/* Container styling */
/* General styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.container-banner {
    display: flex;
    flex-direction: row;
    max-width: 1200px;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    gap: 20px;
}

/* Text Section */
.text-section {
    flex: 1;
    padding-right: 50px;
}

.hone {
    font-size: 4rem; /* Use relative units */
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
    color: white;
}

.htwo {
    font-size: 3.5rem;
    font-weight: 700;
    margin-top: 10px;
    color: rgba(255, 255, 255, 0);
    -webkit-text-stroke: 2px white;
}

.text-section p {
    font-size: 1.2rem;
    margin-top: 20px;
    color: white;
    max-width: 85%;
}

 /* Form Section */
 .form-section {
    flex: 1;
    padding: 30px;
    border-radius: 10px;
    max-width: 400px;
    width: 100%;
}

.form-section input,
.form-section textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 5px;
    border: none;
    font-size: 1rem;
    background-color: #ffffff;
    color: #000;
}

.form-section input[type="checkbox"] {
    width: auto;
    margin-right: 10px;
}

.form-section label {
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    color: white;
}

.form-section button {
    width: 100%;
    padding: 15px;
    background-color: #62975f;
    color: white;
    border: none;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
}

.form-section button:hover {
    background-color: #005b33;
}

.captcha-container {
    display: flex;
    margin-bottom: 15px;
  }
  
  .captcha-box {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    /* border: 2px solid #000; */
    border-radius: 5px;
    width: 100px;
    height: 48px;
    font-size: 1.2rem;
    font-weight: 100;
    color: #000;
    margin-right: 10px;
  }
  
  .captcha-input {
    flex: 1;
    padding: 10px;
    font-size: 1rem;
    border-radius: 5px;
    border: 2px solid #000;
  }
  


/* Banner Section */
#banner {
    font-family: 'Arial', sans-serif;
    background-color: #2e9ec6;
    /* color: white; */
    height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5%;
}

/* Tablet and mobile styles */
@media (max-width: 1024px) {
    .hone {
        font-size: 3.5rem;
    }

    .htwo {
        font-size: 3rem;
    }

    .form-section {
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    .container-banner {
        flex-direction: column;
        text-align: center;
    }

    .text-section {
        padding-right: 0;
    }

    .hone {
        font-size: 2.5rem;
    }

    .htwo {
        font-size: 2rem;
    }

    .form-section {
        max-width: 100%;
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .hone {
        font-size: 33px;
    }

    .htwo {
        font-size: 35px;
        -webkit-text-stroke: 1px white;
    }

    .text-section p {
        font-size: 1rem;
        max-width: 100%;
    }

    .form-section {
        padding: 15px;
        width: 100%;
    }

    #banner {
        height: auto;
        padding: 10px;
    }
}

/* intl-tel-input custom styles */
.iti {
    width: 100%;
}

.iti__selected-flag {
    padding: 12px 15px;
}

.iti input {
    width: 100%;
    padding-left: 60px; /* Adjust for flag dropdown */
}

/* NAvbar */

.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
 */


 /* Feature Section Styling */
/* Feature Section */
/* Base styles */
.feature-section {
    background-color: #1e1e1e;
    color: white;
    text-align: center;
    padding: 50px 20px;
    font-family: 'Arial', sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.feature-text {
    max-width: 900px;
    width: 100%;
    margin-bottom: 20px;
}

.feature-text h2 {
    font-size: 44px;
    font-weight: 600;
    margin-bottom: 20px;
}

.feature-text p {
    font-size: 1.25rem;
    font-weight: 500;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    color: white;
}

.feature-image {
    width: 100%;
    max-width: 900px;
    height: 288px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-image img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

/* For very large screens (2560px and above) */
@media (min-width: 2560px) {
    .feature-section {
        padding: 70px 40px;
    }
    .feature-text h2 {
        font-size: 3rem;
    }
    .feature-text p {
        font-size: 1.5rem;
    }
    .feature-image {
        max-width: 1000px;
        height: 423px;
    }
}

/* For extra-large devices (desktops, 1200px and above) */
@media (min-width: 1200px) and (max-width: 2559px) {
    .feature-text h2 {
        font-size: 2.5rem;
    }
    .feature-text p {
        font-size: 1.15rem;
    }
    .feature-image {
        max-width: 700px;
    }
}

/* For large devices (laptops, 992px to 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
    .feature-section {
        gap: 35px;
    }
    .feature-text h2 {
        font-size: 2.25rem;
    }
    .feature-text p {
        font-size: 1.125rem;
    }
    .feature-image {
        max-width: 650px;
    }
}

/* For medium devices (tablets, 768px to 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .feature-section {
        gap: 30px;
    }
    .feature-text h2 {
        font-size: 2rem;
    }
    .feature-text p {
        font-size: 1rem;
        max-width: 90%;
    }
    .feature-image {
        max-width: 90%;
    }
}

/* For small devices (large phones and tablets, 576px to 767px) */
@media (min-width: 576px) and (max-width: 767px) {
    .feature-section {
        gap: 25px;
    }
    .feature-text h2 {
        font-size: 1.75rem;
    }
    .feature-text p {
        font-size: 0.95rem;
    }
    .feature-image {
        max-width: 85%;
    }
}

/* For extra-small devices (phones, 575px and below) */
@media (max-width: 575px) {
    .feature-text h2 {
        font-size: 1.5rem;
        margin-top: 50px;
    }
    .feature-text p {
        font-size: 1rem;
        max-width: 95%;
    }
    .feature-image {
        max-width: 100%;
    }
    .feature-section {
        gap: 20px;
        padding: 40px 10px;
    }
}

 /* End Feature */

 /* Feature Show */
/* General Section Styling */
#feture-show {
    font-family: Arial, sans-serif;
    background: url('./images/backgroundfe.png') no-repeat center center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 80px;
    height: 122vh;
}

/* Text and Buttons Container */
.unique-container {
    text-align: center;
    max-width: 90%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

/* Heading */
.unique-heading {
    color: #2c3192;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

/* Buttons */
.unique-buttons {
    margin-top: 20px;
    display: flex;
    gap: 10px;
}

.unique-btn-demo,
.unique-btn-features {
    padding: 12px 24px;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
    cursor: pointer;
}

.unique-btn-demo {
    background-color: #72975f;
    color: white;
}

.unique-btn-demo:hover {
    background-color: #005b33;
    text-decoration: none;
}

.unique-btn-features {
    background-color: white;
    color: #005b33;
    border: 2px solid #62975f;
}

.unique-btn-features:hover {
    background-color: #c3e4c1;
    color: #014427;
    text-decoration: none;
}

/* Image Container */
.image-container {
    margin-top: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.big-image {
    max-width: 90%;
    object-fit: contain;
    margin-top: -5%;
}

/* 1. For very large screens (2560px and above) */
@media (min-width: 2560px) {
    .unique-heading {
        font-size: 3rem;
    }

    .unique-btn-demo,
    .unique-btn-features {
        font-size: 1.1rem;
        padding: 14px 28px;
    }

    .big-image {
        /* width: 100%; */
        margin-top: -3%;
        max-width: 100%;
    }

    #feture-show{
        height: 1040px;
    }
}



 /*2. For large desktops (1200px to 2559px) */
@media (min-width: 1200px) and (max-width: 1779px) {
    .unique-heading {
        font-size: 2.2rem;
    }

    .unique-btn-demo,
    .unique-btn-features {
        font-size: 1rem;
    }

    .big-image {
        max-width: 100%;
    }

    .image-container {
        margin-top: 120px;
    }

    #feture-show{
        height: auto;
    }

    .big-image{
        max-width: 90%;
        width: 1050px;
    }
}



/* 3. For medium screens (768px to 1199px) */
@media (min-width: 768px) and (max-width: 1199px) {
    .unique-heading {
        font-size: 2rem;
    }

    .unique-btn-demo,
    .unique-btn-features {
        font-size: 1rem;
        padding: 10px 20px;
    }

    .big-image {
        width: 80%;
        margin-top: -5%;
    }

    .image-container {
        margin-top: 50px;
    }

    #feture-show{
        height: 150vh;
    }
}

/* 4. For tablets (576px to 767px) */
@media (min-width: 576px) and (max-width: 767px) {
    .unique-heading {
        font-size: 1.8rem;
    }

    .unique-btn-demo,
    .unique-btn-features {
        font-size: 0.95rem;
        padding: 10px 18px;
    }

    .big-image {
        width: 85%;
    }

    .image-container {
        margin-top: 30px;
    }
    
    #feture-show{
        height:102vh;
    }
}

/* 5. For mobile phones (below 576px) */
@media (max-width: 575px) {
    #feture-show {
        padding-top: 50px;
        height: auto;
    }

    .unique-heading {
        font-size: 1.5rem;
    }

    .unique-btn-demo,
    .unique-btn-features {
        font-size: 0.85rem;
        padding: 8px 18px;
    }

    .big-image {
        max-width: 100%;
        margin-top: 0;
    }

    .image-container {
        margin-top: 20px;
    }
}


 /* End Feature Show */

 /* Function */

/* General Styling for Function Section */
#function-section {
    background-color: #299dc6;
    color: white;
    text-align: center;
    /*margin-top: 112px;*/
    font-family: 'Arial', sans-serif;
    padding-top: 80px;
    /* padding-bottom: 100px; */
}

/* Heading */
.function-heading {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 20px;
}

/* Paragraph */
.function-paragraph {
    font-size: 1.2rem;
    font-weight: 550;
    max-width: 1200px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Container for Cards */
.container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    padding: 40px 0;
}

/* Card Styling */
.card {
    background-color: #f5f5f5;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    width: 320px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin: 10px;
    opacity: 0; /* Start invisible */
    transform: translateY(30px); /* Start slightly below */
    transition: opacity 0.8s ease-out, transform 0.6s ease-out;
}

/* Animation when cards are in view */
.card.show {
    opacity: 1; /* Fully visible */
    transform: translateY(0); /* In final position */
}

/* Card Text Styling */
.card h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
    color: #000;
    text-align: left;
}

.card p {
    font-size: 1rem;
    color: #333;
    text-align: left;
}

/* Card Image Styling */
.card img {
    max-width: 80px;
    height: auto;
    margin-bottom: 15px;
}

/* Card Hover Effect */
.card:hover {
    box-shadow: 0 16px 16px rgba(0, 0, 0, 0.2);
    transform: translateY(-5px);
}

/* First Card Section */
.card-section {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #299dc6;
    padding: 0;
    margin-top: 50px;
}

.second-card{
    margin-top: -80px;
}

.last-crad{
    height: 300px;
}

/* Responsive Styles */

/* For Tablets (768px and below) */
@media (max-width: 768px) {
    .function-heading {
        font-size: 2rem;
    }

    .function-paragraph {
        font-size: 1rem;
    }

    .container {
        flex-direction: column;
    }

    .card {
        margin: 20px 0;
        max-width: 330px;
    }
    .last-crad{
        height: auto;
    }
}

/* For Mobile Phones (480px and below) */
@media (max-width: 480px) {
    .function-heading {
        font-size: 43px;
    }

    .last-crad{
        height: auto;
    }

    .function-paragraph {
        font-size: 16px;
        padding: 0 20px;
    }

    .card {
        width: 100%;
        padding: 15px;
        margin: 10px 0;
    }

    .card h3 {
        font-size: 1.4rem;
    }

    .card p {
        font-size: 0.9rem;
    }

    .card img {
        max-width: 70px;
    }

    /* Add more spacing for better view on small screens */
    .container {
        padding: 20px 10px;
    }

    .card-section {
        padding-bottom: 30px;
    }

    /* Adjust the height and background */
    .card-section {
        margin-top: 20px;
    }

    .second-card{
        margin-top: -65px;
    }
}

 /* End Function */

 /* Sldier */
 #slider-section {
    background-color: #e2e2e2; /* Dark background */
    color: white;
    text-align: center;
    font-family: 'Arial', sans-serif;
    padding: 50px 0; /* Combined top and bottom padding */
}

/* Heading */
.slider-heading {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #1e1e1e;
}

/* Paragraph */
.slider-paragraph {
    font-size: 1.2rem;
    font-weight: 550;
    max-width: 1200px;
    margin: 0 auto;
    line-height: 1.6;
    color: #1e1e1e;
}

/* Slider Container */
.slider {
    width: 100%;  
    height: 700px; 
    background-image: url('');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-top: 100px;
    overflow: hidden; 
}

/* Carousel Item */
.carousel-item {
    height: 100%; /* Carousel items fill height */
}

/* Carousel Item Images */
.carousel-item img {
    height: 100%; /* Images fill carousel item */
    object-fit: cover; /* Maintain aspect ratio */
    width: 100%; /* Make images responsive */
}

/* Slider Max Width */
.slider1 {
    max-width: 1200px;
    margin: 0 auto; /* Center the slider */
    margin-top: 66px;

}

/* Responsive Adjustments */
@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 */
    }

    .slider {
        height: 400px; /* Reduced height on mobile */
    }
}

@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: #f8f8f8;
    }

    .slider {
        height: 300px; /* Further reduce height on very small screens */
    }
}


 /*End Slider  */

 /* Why choose us  */

 
 .crm-features-section {
    background-color: #eaf3fc; /* Soft background */
    padding: 60px 0;
    height: 750px;
}

.custom-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.crm-heading {
    flex: 1 1 100%;
    text-align: left;
    margin-bottom: 30px;
}

.crm-heading h2 {
    font-size: 32px;
    font-weight: bold;
    color: #000; /* Black text for heading */
}

.crm-features {
    display: flex;
    justify-content: space-between;
    flex: 1 1 100%;
}

.crm-column {
    flex: 1 1 45%; /* Makes two columns */
   
}

.crm-column ul {
    list-style: none;  /* Removes default bullet points */
    padding: 0;        /* Removes default padding */
    margin: 0;         /* Removes default margin */
}

.crm-column li {
    font-size: 18px;            /* Sets font size for list items */
    margin-bottom: 15px;        /* Adds space below each list item */
    line-height: 1.6;           /* Sets line height for better readability */
    display: flex;              /* Uses flexbox for alignment */
    align-items: center;        /* Centers items vertically */
    color: #333;                /* Sets text color */
}   

.crm-icon {
    font-size: 24px;
    color: #5f68f3; /* Icon color */
    margin-right: 10px;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .crm-column {
        flex: 1 1 100%; /* Stack columns on smaller screens */
        margin-bottom: 20px;
    }

    .crm-heading {
        text-align: center;
    }
}

 /* End Why Choose Us */

 /* prizing */
/* Main section */
#prizing {
    font-family: Arial, sans-serif;
    background-color: #fafafa;
    padding: 30px;
    margin: 0;
}

/* Table container */
.pricing-table {
    width: 100%;
    max-width: 100%;
    margin: 20px 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;
}
/* 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;
    }
}

 /* contact form */
 .contact-section {
    padding: 50px 0;
    background-color: #fafbfd;
}

.contact-section h2 {
    text-align: left;
    color: #000;
    font-size: 28px;
    font-weight: 700;
}

.contact-section p {
    text-align: left;
    color: #000;
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 30px;
}

.main-box {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    padding: 15px;
}

.black-box {
    background-color: #000;
    color: #fff;
    padding: 40px;
    width: 40%;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.black-box h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}

.black-box p {
    font-size: 16px;
    color: #ddd;
    margin-bottom: 30px;
}

.black-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.black-box ul li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 16px;
    color: #ddd;
}

.black-box ul li i {
    margin-right: 10px;
    font-size: 20px;
    color: #ffd700; /* Gold color for icons */
}

.black-box:before {
    content: "";
    position: absolute;
    width: 200px;
    height: 200px;
    background-color: #00a9ff;
    border-radius: 50%;
    bottom: -50px;
    right: 10px;
    z-index: -1;
}

.white-box {
    background-color: #fff;
    padding: 40px;
    width: 60%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.white-box .form-control {
    border: 1px solid #ddd;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 8px;
    font-size: 16px;
    box-shadow: inset 0px 0px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.white-box .form-control:focus {
    border-color: #00a9ff;
    box-shadow: 0px 0px 10px rgba(0, 169, 255, 0.2);
}

.white-box .btn {
    background-color: #0033cc;
    color: #fff;
    border-radius: 30px;
    padding: 12px 25px;
    border: none;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.white-box .btn:hover {
    background-color: #0022aa;
}

.white-box .form-check {
    margin-top: 10px;
}

.white-box .form-check-input {
    margin-right: 10px;
}

.white-box .form-check-label {
    font-size: 14px;
}


 /* End contact form */

 
/* General Reset */
/* Special Features Section */
/* Special Features Section */
.special-features-section {
    text-align: center;
    margin-top: 70px;
}

.special-features-section h1 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.special-features-section .icon-line {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #6a11cb, #2575fc);
    margin: 0 auto 20px auto;
}

.special-features-section p {
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

/* Main Container */
/* Main Container */
.main-container {
    display: flex;
    justify-content: space-evenly;
    align-items: flex-start;
    padding: 90px;
    height: 80vh;
}

.section {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

/* First and Third Section Styles */
.first-section,
.third-section {
    width: 30%;
}

.gradient-card {
    background: linear-gradient(180deg, #FFFFFF 0%, #E5F1FF 100%);
    border: 2px solid #83BFFF;
    padding: 30px;
    margin: 10px 0;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    row-gap: 15px;
    min-height: 100px;
    justify-content: center;
    transition: all 0.3s ease;
}

.gradient-card:hover {
    border-color: #1e3a8a;
    transform: translateY(-5px);
}

.gradient-card h5 {
    margin-bottom: 10px;
    font-size: 1.25rem;
}

/* Middle Section with Video */
.middle-section {
    width: 25%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-container {
    width: 270px;
    height: 450px;
    border-radius: 40px;
    overflow: hidden;
    background-color: transparent;
    padding: 0;
    margin: 0;
}

.phone-container video {
    width: 100%;
    height: 100%;
    border-radius: inherit;
    object-fit: cover;
}

/* Responsive Design */

/* For screens between 1366px and 1024px */
@media (min-width: 1024px) and (max-width: 1366px) {
    .main-container {
        padding: 70px;
    }

    .first-section, .third-section {
        width: 28%;
    }

    .middle-section .phone-container {
        width: 250px;
        height: 420px;
    }
}

/* For laptops and larger tablets (max-width 1024px) */
@media (max-width: 1024px) {
    .main-container {
        flex-direction: column;
        align-items: center;
        height: auto;
        padding: 50px;
    }

    .section {
        width: 100%;
        flex-direction: row;
        justify-content: space-around;
        margin-bottom: 20px;
    }

    .first-section, .third-section {
        width: 45%;
    }

    .middle-section {
        margin: 20px 0;
    }
}

/* For tablets (768px and below) */
@media (max-width: 768px) {
    .main-container {
        padding: 30px;
    }

    .section {
        width: 100%;
        flex-direction: column;
        align-items: center;
        margin-bottom: 20px;
    }

    .first-section, .third-section {
        width: 100%;
    }

    .gradient-card {
        width: 90%;
    }

    .middle-section {
        margin: 20px 0;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .phone-container {
        width: 220px;
        height: 370px;
    }

    .gradient-card h5{
        font-size: 1.2rem;
    }
}

/* For smaller tablets and phones (between 768px and 480px) */
@media (max-width: 480px) and (min-width: 480px) {
    .main-container {
        padding: 20px;
    }

    .gradient-card {
        width: 100%;
        padding: 20px;
    }

    .middle-section .phone-container {
        width: 180px;
        height: 320px;
    }

    .gradient-card h5 {
        font-size: 1.1rem;
    }
}

/* For mobile phones (below 480px) */
@media (max-width: 480px) {
    .main-container {
        flex-direction: column;
        align-items: center;
        height: auto;
        padding: 10px;
    }

    .first-section, .third-section {
        width: 100%;
    }

    .section {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .gradient-card {
        width: 100%;
        padding: 15px;
    }

    .phone-container {
        width: 160px;
        height: 300px;
    }

    .gradient-card h5 {
        font-size: 1rem;
    }
}


/* end why chopose us  */
  
 /* 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 */



 /* Button styles */
.book-demo-btn {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #007BFF;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    z-index: 1000;
}

/* Popup form styles */
.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 999;
}

.popup-content {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    max-width: 840px;
    width: 100%;
    text-align: left;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3); /* Add shadow for depth */
}

.close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    cursor: pointer;
}

.form-group {
    margin-bottom: 20px; /* Add space between form groups */
}

label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px; /* Space between label and input */
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
    width: 100%; /* Full width minus padding */
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px; /* Consistent font size */
    box-sizing: border-box; /* Include padding in width */
}

textarea {
    height: 100px; /* Set height for textarea */
    resize: none; /* Disable resizing */
}

.submit-button {
    background-color: #72975f; /* Submit button color */
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s; /* Smooth hover transition */
    width: 435px;
}

.submit-button:hover {
    background-color: #005b33; /* Darken button on hover */
}

/* Button rotated vertically with horizontal text */
.book-demo-btn {
    position: fixed;
    right: -50px;
    top: 50%;
    transform: translateY(-50%) rotate(90deg); /* Rotating the button 90 degrees */
    background-color: #62975f;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    z-index: 1000;
    transform-origin: center; /* Ensure the rotation happens around the center */
}

.book-demo-btn:hover{
    background-color: #005b33;
}

/* Keep text horizontal inside the rotated button */
.book-demo-btn span {
    display: inline-block;
    transform: rotate(0deg); /* Rotate text back to horizontal */
}


/* Style for the tab container */
.tab-container {
    text-align: center;
    margin-top: 50px;
}

/* Style for the tab buttons */
.tabs {
    display: inline-block;
    margin-bottom: 20px;
}

.tab-btn {
    padding: 10px 20px;
    border: 2px solid #ccc;
    background-color: #f1f1f1;
    cursor: pointer;
    font-weight: bold;
    margin-right: 10px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.tab-btn.active {
    background-color: #72975f;
    color: white;
}

.tab-btn:hover {
    background-color: #ddd;
}

/* Style for tab content */
.tab-content {
    display: none;
}

#lightContent img, #darkContent img {
    width: 300px;
    height: auto;
    border-radius: 10px;
}

/* Light Mode Specific Styles */
#lightContent.active {
    display: block;
    background-color: white;
    padding: 20px;
}

/* Dark Mode Specific Styles */
#darkContent.active {
    display: block;
    background-color: #333;
    padding: 20px;
}

#darkContent img {
    border: 2px solid #fff;
}


/* prizing */
 /* Main section */
 #prizing {
    font-family: Arial, sans-serif;
    /* background-color: #f1f7f3; Very light background */
    padding: 30px;
    margin-top: 0px;
    height: 830px;
}

/* Table container */
.pricing-table {
    width: 100%;
    max-width: 95%;
    margin: 50px auto;
    border-radius: 12px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15); /* Slight shadow */
}

/* Table styling */
table {
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
    background-color: #fff; /* White table background */
    border-radius: 12px;
    overflow: hidden;
}

/* Table header styles */
th, td {
    padding: 15px 20px;
    text-align: center;
    font-size: 16px;    
    border: 1px solid #dfe3e6; /* Light gray borders */
}

th {
    background-color: #e6f2e9; /* Light green header */
    color: #265922; /* Dark green for header text */
    font-size: 18px;
    font-weight: 600;
    text-align: center;
}

/* For centering text inside table header cells */
.table-th {
    text-align: center;  /* Horizontally center the text */
    vertical-align: middle;  /* Vertically center the text */
    padding: 15px;  /* Adjust padding to provide some space inside the header */
    font-size: 25px;  /* Set font size as needed */
    background-color: #e6f2e9;  /* Example background color for headers */
    color: #265922;  /* Example text color */
}


thead th {
    border-bottom: 2px solid #b3d4c4; /* Darker gray for the bottom header border */
    text-align: center;
}

/* Table rows */
tbody tr:nth-child(even) {
    background-color: #f3faf5; /* Light green background for even rows */
}

tbody tr:nth-child(odd) {
    background-color: #fff; /* White for odd rows */
}

/* Specific column colors for the pricing plans */
td:nth-child(2) {
    background-color: #d6edd9; /* Light green for 2nd column */
}

td:nth-child(3) {
    background-color: #b7d9b8; /* Slightly darker green for 3rd column */
}

td:nth-child(4) {
    background-color: #99c597; /* Medium green for 4th column */
}

td:nth-child(5) {
    background-color: #7ab175; /* Darker green for the last column */
}

/* Styling for icons inside table */
td .check {
    color: #3bb54a; /* Bright green for checks */
    font-size: 18px;
}

td .cross {
    color: #e74c3c; /* Red for crosses */
    font-size: 18px;
}

/* Buttons inside the table */
.table-button {
    background-color: #62975f; /* Green button */
    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: #005B33; /* Lighter green on hover */
    color: #fff;
}

/* 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 */


 /* popup */
/* Popup Overlay */
.popup-overlay {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    top: 0; /* Stay at the top */
    left: 0; /* Stay on the left */
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    background-color: rgba(0, 0, 0, 0.6); /* Black background with opacity */
    z-index: 1000; /* Sit on top */
}

/* Popup Content */
.custom-popup-content {
    background-color: white; /* White background for the content */
    width: 80%; /* 80% of the viewport width */
    max-width: 900px; /* Maximum width */
    display: flex; /* Flexbox for layout */
    justify-content: space-between; /* Space between left and right */
    padding: 40px; /* Padding around content */
    border-radius: 10px; /* Rounded corners */
    position: relative; /* Relative positioning */
    top: 20%; /* Center vertically */
    left: 50%; /* Center horizontally */
    transform: translate(-50%, -20%); /* Adjust position */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3); /* Shadow effect */
    background: linear-gradient(145deg, rgba(245, 245, 245, 1) 0%, rgba(255, 255, 255, 1) 100%); /* Gradient background */
    font-family: 'Arial', sans-serif; /* Font style */
}

/* Left Side Styling */
.custom-popup-left {
    width: 55%; /* Width for the left side */
    display: flex; /* Flexbox for alignment */
    flex-direction: column; /* Vertical alignment */
    justify-content: center; /* Center vertically */
    text-align: left; /* Left align text */
}

.custom-popup-left h2 {
    font-size: 24px; /* Heading font size */
    font-weight: bold; /* Bold font */
    color: #333; /* Dark gray color */
    margin-bottom: 15px; /* Space below heading */
}

.custom-popup-left p {
    font-size: 16px; /* Paragraph font size */
    margin-bottom: 20px; /* Space below paragraph */
    color: #333; /* Dark gray color */
}

.custom-popup-left ul {
    list-style-type: disc; /* Bullet points */
    padding-left: 20px; /* Indent list */
}

.custom-popup-left li {
    font-size: 16px; /* List item font size */
    margin-bottom: 10px; /* Space below list item */
    color: #444; /* Darker gray color */
}

/* Right Side Form Styling */
.custom-popup-right {
    width: 40%; /* Width for the right side */
}

.custom-popup-right form {
    display: flex; /* Flexbox for layout */
    flex-direction: column; /* Vertical alignment */
}

.form-input {
    width: 100%; /* Full width */
    padding: 12px; /* Padding */
    margin-bottom: 15px; /* Space below each input */
    border: 1px solid #ccc; /* Light gray border */
    border-radius: 8px; /* Rounded corners */
    font-size: 14px; /* Font size */
}

/* Form Select Container */
.form-select-container {
    position: relative; /* Position for the arrow icon */
    display: flex; /* Flexbox for layout */
    align-items: center; /* Align items vertically center */
}

/* Custom Select Field */
.form-select {
    width: 100%; /* Full width */
    padding: 12px; /* Padding */
    margin-bottom: 15px; /* Space below select field */
    border: 1px solid #ccc; /* Light gray border */
    border-radius: 8px; /* Rounded corners */
    font-size: 14px; /* Font size */
    appearance: none; /* Remove default arrow */
    background-color: #ffffff; /* White background */
    cursor: pointer; /* Pointer cursor */
}

/* Select Icon (Down/Up Arrow) */
.select-arrow {
    position: absolute; /* Absolute position within container */
    right: 15px; /* Position on the right */
    pointer-events: none; /* Ignore mouse events */
    font-size: 20px; /* Font size for the icon */
    color: #333; /* Dark gray color */
}

/* Submit Button Styling */
.submit-btn {
    padding: 12px; /* Padding */
    background-color: #72965f; /* Button background color */
    color: white; /* Button text color */
    border: none; /* No border */
    cursor: pointer; /* Pointer cursor */
    border-radius: 8px; /* Rounded corners */
    font-size: 16px; /* Font size */
    transition: background-color 0.3s ease; /* Smooth background color transition */
}

.submit-btn:hover {
    background-color: #005b33; /* Darker blue on hover */
}

/* Close Button */
.custom-close-popup {
    position: absolute; /* Absolute position */
    top: 10px; /* Position from top */
    right: 20px; /* Position from right */
    font-size: 24px; /* Font size */
    cursor: pointer; /* Pointer cursor */
    color: #555; /* Gray color */
}

/* Responsive Design */
@media (max-width: 768px) {
    .custom-popup-content {
        flex-direction: column; /* Stack vertically on small screens */
        width: 90%; /* Adjust width */
        padding: 20px; /* Adjust padding */
    }

    .custom-popup-left,
    .custom-popup-right {
        width: 100%; /* Full width for both sides */
    }

    .custom-popup-left {
        margin-bottom: 30px; /* Space below left side */
    }
}
/* whatsapp button  */
/* WhatsApp Button Styling */
.whatsapp-button {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #25D366;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-button img {
    width: 40px;
    height: 40px;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* Chatbox Styling */
.whatsapp-chatbox {
    display: none;
    position: fixed;
    bottom: 120px;
    left: 30px;
    width: 300px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 1001;
    font-family: Arial, sans-serif;
}

/* Chatbox Header */
.chatbox-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #25D366;
    padding: 10px;
    color: #fff;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    font-weight: bold;
}

/* Close Button */
.close-btn {
    cursor: pointer;
    font-size: 18px;
}

/* Chatbox Body */
.chatbox-body {
    padding: 15px;
    display: flex;
    flex-direction: column;
}

.chatbox-body textarea {
    width: 100%;
    height: 80px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    resize: none;
    margin-bottom: 10px;
}

.chatbox-body .send-btn {
    background-color: #25D366;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.chatbox-body .send-btn:hover {
    background-color: #1ebe58;
}


/* end whatsapp button */

/* book a demo */
 
 /* Sticky Button */
/* 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 */
.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: 465px;
    overflow-y: auto; /* Allow scrolling if content overflows */
}

.demo-popup-image {
    max-width: 40%;
}

.demo-popup-image img {
    max-width: 100%;
    height: 412px;
    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;;
}


/* 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 */

/* main popup */
/* Main Popup Background */
.main-middel-popup {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* Dark overlay */
    justify-content: center;
    align-items: center;
    z-index: 1000;
    padding: 15px; /* Padding for mobile */
    box-sizing: border-box; /* Ensure padding doesn't affect width */
}

/* Show popup only on screens 1024px and above */
@media (min-width: 1024px) {
    .main-middel-popup {
        display: flex; /* Show popup on laptop and larger screens */
    }
}

/* Popup Content */
.main-middel-popup-content {
    display: flex;
    flex-direction: column; /* Vertical stacking by default */
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(to bottom right, #0056b3, #62975f); /* Gradient background */
    border-radius: 20px;
    position: relative;
    width: 70%;
    height: auto;
    max-width: 800px; /* Max width for larger screens */
    color: white;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.5); /* Popup shadow */
    animation: fadeIn 0.5s ease; /* Fade-in effect */
    padding: 20px;
    box-sizing: border-box; /* Ensure padding doesn't affect size */
}

/* Animation for popup */
@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

/* Left Side Content */
.main-left-content {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
}

.main-left-content h2 {
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: bold;
    margin-top: 50px;
}

.main-left-content p {
    font-size: 16px;
    margin-bottom: 20px;
}

.main-button-container {
    display: flex;
    gap: 10px;
    justify-content: left;
    flex-wrap: wrap;
}

/* Button Styles */
.main-btn {
    padding: 10px 16px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.main-red-btn {
    background-color: #72975f;
    color: white;
}
.main-red-btn:hover {
    background-color: #005b33;
    color: white;
    text-decoration: none;
}

/* Right Side Image */
.main-right-image {
    max-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 18px;
}

.main-right-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    width: auto;
}

/* Close Button */
.main-close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 28px;
    color: white;
    cursor: pointer;
}

/* Responsive Design */

/* Large screens - Tablets and up (1024px and above) */
@media (min-width: 1024px)  {
    .main-middel-popup-content {
        flex-direction: row; /* Side-by-side layout */
        padding: 0px;
        padding-left: 20px;
        padding-right: 20px;
        padding-top: 20px;
        height: auto;
    }
    
       .main-middel-popup {
        display: flex; /* Show popup on laptop and larger screens */
    }

    .main-left-content {
        width: 60%;
        text-align: left; /* Left-align text */
        padding-right: 20px;
    }

    .main-right-image {
        width: 39%;
    }

    .main-left-content h2 {
        font-size: 40px; /* Larger font for heading */
    }

    .main-left-content p {
        font-size: 20px;
    }

    .main-button-container {
        gap: 20px; /* Increase space between buttons */
        margin-bottom: 35px;
    }
}

/* Medium screens - Tablets (768px to 1024px) */
@media (min-width: 768px) and (max-width: 1023px) {
    .main-middel-popup-content {
        flex-direction: row;
        height: 400px;
    }

    .main-left-content {
        width: 60%;
        text-align: left;
    }

    .main-right-image {
        width: 35%;
    }

    .main-left-content h2 {
        font-size: 35px;
    }

    .main-left-content p {
        font-size: 20px;
    }

    .main-button-container {
        gap: 15px;
    }
}

/* Small screens - Mobile devices (480px to 768px) */
@media (min-width: 480px) and (max-width: 767px) {
    .main-middel-popup-content {
        height: 460px;
    }

    .main-left-content h2 {
        font-size: 30px;
    }

    .main-left-content p {
        font-size: 18px;
    }

    .main-right-image img {
        max-width: 80%;
        height: auto;
    }

    .main-right-image {
        margin-top: 10px;
    }
}

/* Extra small screens - Mobile phones (up to 480px) */
@media (max-width: 480px) {
    .main-middel-popup-content {
        height: 565px;
    }

    .main-left-content h2 {
        font-size: 22px;
    }

    .main-left-content p {
        font-size: 16px;
    }

    .main-right-image img {
        max-width: 80%;
        height: 240px;
    }

    .main-button-container {
        justify-content: left;
    }
}

/* Ultra-wide screens (above 1440px) */
@media (min-width: 1440px) {
    .main-middel-popup-content {
        max-width: 1200px;
        padding: 0px;
        padding-left: 20px;
        padding-right: 20px;
        padding-top: 20px;
    }

    .main-left-content h2 {
        font-size: 48px;
    }

    .main-left-content p {
        font-size: 28px;
    }

    .main-right-image img {
        max-width: 90%;
    }

    .main-button-container {
        gap: 30px;
    }
}

/* end main popup */
