/* Define the --muted variable with the color #fbfbfc */





:root {

    --muted: #fbfbfc; /* Light greyish background color */

}



body {

    margin: 0;

    font-family: 'Segoe UI', sans-serif;

    color: #1c1c1c;

    background-color: #fff;

}



a {

    text-decoration: none;

    color: #000;

    /* margin: 0 10px; */
    margin-right:10px;

    font-weight: 500;

}



.navbar {

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding: 20px 15%;

    border-bottom: 1px solid #eee;

    max-width: 1200px; /* Limit the width to create space on large screens */

    margin: 0 auto; /* Centers the navbar */

}

.nav-links {
    display: flex;
    gap: 5px;
}

.nav-links a {
    color: rgb(113, 113, 130);
    font-weight: 501;
}


/* Hide menu icon on desktop */
@media (min-width: 769px) {
    .menu-toggle {
        display: none !important; /* Hide only on desktop */
    }
}

/* Mobile styles */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;         /* Show only on mobile */
        font-size: 20px;
        cursor: pointer;
        margin-left: auto;
        transition: color 0.5s ease, transform 0.5s ease;
        color: rgb(113, 113, 130); /* target color */
        
    }

    .menu-toggle:hover {
        color: rgb(191, 191, 199);
        
    }

    .nav-links {
        display: none; /* Hide links initially */
        width: 100%;
        padding: 10px 0;
        justify-content: center;
        border-top: 1px solid #eee;
        margin-top:5%;
    }

    .nav-links.show {
        display: flex; /* Show when active */
        flex-direction: row; /* Horizontal layout */
        gap: 15px;
    }

    .logo_name a {
        margin-left:0px;
    }
    
    .nav-links a {
        font-size: 0.88rem;
        margin:0!important;
        color: rgb(113, 113, 130);
    }

    .nav-links a:hover {
        transform: translateY(-1px); /* Lift up on hover */
        transition: all 0.4s ease; /* Smooth transition */
    }

    .navbar {
        flex-wrap: wrap; /* Allow menu to go below logo */
        border-bottom: none;

    }
}


.logo {

    display: flex;
    align-items: left;
    gap: 5px;

}

.logo-icon {

    background-color: #000;

    color: #fff;

    border-radius: 8px;

    width: 64px;

    height: 30px;

    display: flex;

    align-items: center;

    justify-content: center;

    font-weight: bold;

    margin-right: 10px;

}



.logo_name{

    font-size: 1.6rem;    

}



.logo-text small{

    color: rgb(113, 113, 130);

    font-weight: 600;

}



.logo-link {

    display: inline-flex; /* Maintains logo layout */

    text-decoration: none; /* Removes underline */

    color: inherit; /* Keeps original text color */

}



.hero {

    text-align: center;

    padding: 40px 30px;

    max-width: 1200px; /* Limiting the width */

    margin: 0 auto; /* Centering the section */

    background-color: rgba(251, 251, 252, 0.8); /* Light grey with opacity */

}

.hero h1 {

    font-size: 1.5rem; /* Slightly smaller */

    font-weight: bold;

}



.hero p {

    max-width: 800px;

    margin: 20px auto;

    color: rgb(113, 113, 130);

}
/* 
@media (max-width: 768px) {
    .hero p {
        text-align: left;
    }
} */

/* Updated Card Styles */

.card {

    background-color: #fff;

    border: 1px solid #eee;

    padding: 20px; /* Reduced padding */

    border-radius: 12px;

    width: 220px; /* Reduced width */

    height: 230px; /* Reduced width */

    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05); /* Subtle shadow */

    text-align: left;

    transition: all 0.4s ease; /* Smooth transition for all properties */

    transform: translateY(0); /* Initial position */

    margin-bottom: 10px; /* Space for hover effect */

}



/* Hover Effect */

.card:hover {

    transform: translateY(-8px); /* Lift up on hover */

    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1); /* Stronger shadow on hover */

    transition: all 0.4s ease; /* Smooth transition */

}



/* Make the icon transition smoother */

.icon {

    font-size: 30px;

    color: #000;

    margin-bottom: 15px;

    text-align: center;

    transition: transform 0.3s ease; /* Smooth icon transition */

}



/* Optional: Add icon animation on hover */

.card:hover .icon {

    transform: scale(1.1); /* Slightly enlarge icon */

}



/* Adjust options container spacing */

.options {

    display: flex;

    justify-content: center;

    gap: 25px; /* Slightly reduced gap */

    margin-top: 40px;

    flex-wrap: wrap;

    padding: 10px 0; /* Add some padding for hover space */

}



/* Card container for each input */

.input-card {

    background-color: #fff;

    border: 1px solid #eee;

    padding: 12px; /* Reduced padding */

    border-radius: 6px;

    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05); /* Subtle shadow */

    transition: all 0.4s ease; /* Smooth transition for all properties */

    transform: translateY(0); /* Initial position */

    margin-bottom: 10px; /* Space for hover effect */
    font-size: 1rem;

}



/* Hover Effect */

.input-card:hover {

    transform: translateY(-3px); /* Lift up on hover */

    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1); /* Stronger shadow on hover */

    transition: all 0.4s ease; /* Smooth transition */

}

.input-card input {
    font-size: 1rem;
}



.story {

    text-align: center;

    padding: 40px 30px;

    max-width: 1200px; /* Limiting the width */

    margin: 0 auto; /* Centering the section */

    background-color: rgba(251, 251, 252, 0.8); /* Light grey with opacity */

}



.story h1 {

    font-size: 1.5rem; /* Slightly smaller */

    font-weight: bold;

}



.story p {

    text-align: justify;

    line-height: 180%;

    max-width: 800px;

    margin: 20px auto;

    color: rgb(113, 113, 130);

}



.cta {

    text-align: center;

    padding: 60px 20px;

    background-color: #fff; /* White background for "Ready to Get Started?" */

}

.cta h1 {
    font-size: 1.5rem;
}

.blk_button {

    background-color: #000;

    color: #fff;

    padding: 12px 24px;

    border: none;

    border-radius: 8px;

    font-size: 16px;

    cursor: pointer;

    margin-top: 15px;

}



a.blk_button {

    display: inline-block; /* Crucial - makes it behave like a button */

    text-align: center;

    text-decoration: none; /* Removes underline */

    vertical-align: middle; /* Fixes vertical alignment */

    cursor: pointer; /* Shows hand cursor */

    

    /* Include all your existing button styles below */

    background-color: #000;

    color: #fff;

    padding: 12px 24px;

    border: none;

    border-radius: 8px;

    font-size: 16px;

    transition: all 0.3s ease;

  }

  

  /* Optional: If you need precise vertical alignment */

  .blk_button_wrapper {

    line-height: normal;

    display: inline-block;

  }

.blk_button:hover {

    background-color: #333;

    transform: translateY(-2px);

  }


.cta p {

    color: rgb(113, 113, 130);

}



/* "Trusted by Leading Companies" color to be black */

.trusted h2 {

    color: #000; /* Set color to black */

}



/* Trusted Companies Slider */

.trusted {

    text-align: center;

    padding: 10px 10px;

    background-color: rgba(251, 251, 252, 0.8);

    overflow: hidden;

}



.trusted p,small {

    color: rgb(113, 113, 130);

}

.slider-container {

    position: relative;

    max-width: 800px;

    margin: 10px auto;

    overflow: hidden;

}



.slider-track {

    display: flex;

    transition: transform 0.5s ease-in-out;

}



.slide {

    min-width: 100%;

    padding: 20px;

    box-sizing: border-box;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

}



.slide h4,h5 {

    margin-top:8px;

    margin-bottom:3px;

}





.badge {

    background-color: #000;

    color: #fff;

    border-radius: 50%;

    width: 40px;

    height: 40px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin: 0 auto 10px;

    font-weight: bold;

}



.slide h4 {

    margin: 5px 0;

    color: #000;

}



.slide small {

    color: #666;

    font-size: 0.8rem;

}



.company-card {

    background-color: transparent;

    border: none;

    box-shadow: none;

    border-radius: 12px;

    padding: 20px;

    width: 150px;

    text-align: center;

    flex: 0 0 auto;

    opacity: 0;

    transition: opacity 0.5s ease-in-out;

    position: relative;

}



.company-card.visible {

    opacity: 1;

}



.badge {

    background-color: #000;

    color: #fff;

    border-radius: 50%;

    width: 40px;

    height: 40px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin: 0 auto 10px;

    font-weight: bold;

}



/* Comparison Grid */

.comparison {

    text-align: center;

    padding: 40px 20px;

    max-width: 1200px;

    margin: 0 auto;

    background-color: rgba(251, 251, 252, 0.8);

}



.comparison-table {

    display: grid;

    grid-template-columns: 200px repeat(3, minmax(180px, 1fr));

    max-width: 1000px;

    margin: 30px auto;

    background: white;

    border-radius: 12px;

    overflow: hidden;

    box-shadow: 0 2px 10px rgba(0,0,0,0.05);

}



/* Features Column */

.features-column {

    background: #f9f9f9;

}



.features-header {

    padding: 29.5px 20px;

    font-weight: bold;

    background: #f1f1f1;

    border-bottom: 1px solid #eee;

    text-align: center;

}



.feature-row {
    padding: 18px 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    min-height: 60px;
    box-sizing: border-box;

}



.features-column .feature-row {

    justify-content: flex-start;

}



/* Version Columns */

.version-column {

    transition: all 0.3s ease;

}



.version-column:hover {

    transform: translateY(-5px);

    box-shadow: 0 8px 25px rgba(0,0,0,0.1);

    position: relative;

    z-index: 1;

}



.version-header {

    padding: 0px 20px;

    border-bottom: 1px solid #eee;

    text-align: center;

    min-height: 80px;

    display: flex;

    align-items: center;

    justify-content: center;

}



.version-logo {

    width: 110px;

    height: 33px;

    object-fit: contain;

}



.version-column .feature-row {

    justify-content: center;

    text-align: center;

}



/* Colors */

.enterprise .version-header { background: #f8f5ff; border-bottom: 1px solid #e6dcff; }

.community .version-header { background: #f0fff5; border-bottom: 1px solid #d0f0dd; }

.custom .version-header { background: #fff5f0; border-bottom: 1px solid #ffe0d0; }



.fa-check { color: #00C853; }

.fa-times { color: #ff4444; }



/* Mobile Responsiveness */

@media (max-width: 768px) {

    .comparison-table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
        border-collapse: collapse;

    }

    .features-header {
        height: 21px;
    }

    .feature-row {
        padding: 5px 8px;
        font-size: 0.8rem; /* ~13px */
        min-height: 30px;
        
    }

    .features-column {
        display: inline-block;
        font-size: 0.9rem; /* ~13px */
        width: 150px;
        vertical-align: top;

    }
    
    .version-column {
        display: inline-block;
        min-width: 170px;
        /* margin-right: -4px; */
        vertical-align: top;

    }

    .version-column:last-child {
        margin-right: 0;
        
    }

    .version-column:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        position: relative;
        z-index: 1;
    }

}

/* Contact Section - Matches Your Style */

/* Base Styles */

.contact-section {

    padding: 60px 0; /* Remove side padding here */

    background-color: #fbfbfc;

    text-align: center;

    width: 100%;

    overflow-x: hidden; /* Prevent horizontal scroll */

  }

  

  .contact-container {

    max-width: 800px;

    width: 100%;

    margin: 0 auto;

    padding: 0 15px; /* Add padding here instead */

  }

  

  .contact-header h2 {

    font-size: 1.5rem;

    margin-bottom: 10px;

  }

  

  .contact-header p {

    color: #666;

    margin-bottom: 30px;

  }

  

  /* Form Layout */

  .contact-form {

    max-width: 600px;

    margin: 0 auto;

  }



  

  .form-row {

    display: flex;

    gap: 20px;

    margin-bottom: 20px;

    margin: 0 -10px

    justify-content: center;

  }

  

  .form-row-full {

    margin-bottom: 20px;

  }

  

  .form-group {

    flex: 1;

    min-width: 0; /* Fixes flexbox overflow */

    padding: 0 10px

  }

  

  /* Input Styles */

  

  input,

  textarea {

    width: 100%;

    padding: 12px 15px;

    border: 1px solid #ddd;

    border-radius: 6px;

    font-size: 1rem;

    font-family: inherit;

    color: rgb(40, 40, 40);

    transition: all 0.3s ease;

  }

  

  input:focus,

  textarea:focus {

    outline: none;

    border-color: lightgrey;

    box-shadow: 0 0 0 2px rgba(113, 65, 240, 0.1);

  }

  

  textarea {

    min-height: 120px;

    resize: vertical;

  }

  

  /* Button Styles */

  button {

    background-color: #000;

    color: white;

    border: none;

    padding: 12px 30px;

    border-radius: 6px;

    font-size: 1rem;

    cursor: pointer;

    transition: all 0.3s ease;

  }

  

  button:hover {

    background-color: #333;

    transform: translateY(-2px);

  }

  

  /* Responsive */

  /* Add this to your existing CSS */

.contact-form {

    padding: 0 15px; /* Add equal left/right padding */

    box-sizing: border-box; /* Include padding in width calculation */

  }

  .send_button {
    min-width: 200px;
  }

  @media (max-width: 500px) {

    body {

      padding: 0; /* Reset body padding */

      margin: 0; /* Reset body margin */

    }



    .contact-form {

        margin-left:-32px;

    }



    .form-submit {

        margin-left:32px;

    }

    

    .contact-container {

      width: 100%;

      padding: 0 15px; /* Consistent mobile padding */

      box-sizing: border-box;

    }

    input,textarea {

        font-size: 0.8rem;

    }

    

  }



footer {

    display: flex;

    justify-content: space-between;

    padding: 20px 15%;

    border-top: 1px solid #eee;

    font-size: 14px;

    background-color: #fff;

    align-items: center;

    flex-wrap: wrap;

}



.footer-left {

    display: flex;

    align-items: center;

    gap: 10px;

}



.footer-right {

    text-align: left;

    font-size: 12px;

    color: rgb(113, 113, 130);

}

.footer-right p {

margin-top:5px;

margin-bottom:0px;

}



.lazy-container {

    opacity: 0;

    transform: translateY(20px);

    transition: opacity 0.6s ease-out, transform 0.6s ease-out;

  }

  

  .lazy-container.visible {

    opacity: 1;

    transform: translateY(0);

  }



@media screen and (max-width: 768px) {

    .company-card {

        width: 120px;  /* Adjust card width for mobile */

    }

}

