@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;700&display=swap'); /* Importing DM Sans font */

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'DM Sans'; /* Applying DM Sans font */
    background-color: black;
    color: white;
    overflow-x: hidden;
}
@keyframes slideX {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}
.slide-inverse {
    animation: slide-X 0.7s ease-out;
}
@keyframes slide-X {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}
.slide-in {
    animation: slideX 0.7s ease-out;
}
header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgb(0, 0, 0);
    padding: 20px;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between; /* Space between logo and nav */
    align-items: center; /* Vertically center items */
    height: 60px;
    width: 100%;
    max-width: 1200px; /* Optional: to limit the width of the header content */
    margin: 0 auto; /* Center the header content */
}

.logo-container {
    display: flex;
    align-items: center; /* Align items vertically */
}

.logo-img {
    width: 90px; /* Adjust as per your logo size */
    height: 90px; /* Maintain aspect ratio */
    margin-left: -60px; /* Adjust spacing between image and text */
}

.logo {
    font-size: 34px; /* Adjust font size */
    font-weight: bold; /* Add desired styling */
}


nav ul {
    list-style: none;
    display: flex;
    gap: 30px; /* Gap between nav items */
    margin: 0;
    padding: 0;
    padding-top: 20px;
}

nav a {
    text-decoration: none;
    color: white;
    font-size: 24px;
}

#book-demo-btn {
    background-color: #004aad; /* Dark space blue color */
    color: white;
    border: #000;
    padding: 15px 30px; /* Increased padding */
    text-decoration: none;
    border-radius: 20px;
    font-size: 22px; /* Increased font size */
    transition: all 0.3s ease; /* Smooth transition for hover effect */
}

#book-demo-btn:hover {
    cursor: pointer;
    background-color: #004aad; /* Darker shade for hover */
    color: #f0f0f0; /* Lighter text color on hover */
    transform: scale(1.05); /* Slightly increase the button size */
}
#book-demo-btn-sidebar {
    background-color: #004aad;
    color: white;
    border: #000;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 20px;
    font-size: 16px;
    transition: all 0.3s ease;
}
svg:hover{
cursor: pointer;
}
#book-demo-btn-sidebar:hover {
    background-color: #004aad;
    color: #f0f0f0;
    transform: scale(1.05);
}

.sidebar {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 200px;
    background-color: rgba(193, 191, 190, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px); 
    box-shadow: -10px 0 10px rgba(0, 0, 0, 0.1);
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start; /* Aligns items to the top */
    padding-top: 20px; /* Adjust this padding to control spacing from the top */
    z-index: 1000;
    
}

.sidebar ul {
    padding: 0;
    margin: 0;
    width: 100%;
}

.sidebar li {
    width: 100%;
}

.sidebar a {
    width: 100%;
    padding: 5px 20px;
    color: black;
    font-size: 18px;
    text-decoration: none;
    display: block;
}

.sidebar a:hover {
    color: #0077b5;
}

.menu-button {
    display: none;
}

.landing {
    padding: 100px 300px; /* Adjusted for consistency with home page */
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 80vh;
    background-color: black; /* Ensuring the background is black */
}

.text-content {
    max-width: 60%;
}

.text-content h1 {
    font-size: 80px;
    font-weight: bold;
    margin-bottom: 5px;
    background: linear-gradient(to right, #004aad,white); 
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    text-align: center;
    animation:slideIn 0.7s ease-out;

}


.landing h2{
    color : #ffbd59;
    animation:slideIn 0.5s ease-out;

}

/* Product Page Styles */
.product-page {
    background-color: rgb(0, 0, 0);
    padding: 50px 30px; /* Adjusted for consistency with home page */
    color: rgb(255, 255, 255);
}

.product-page h1 {
    font-size: 50px;
    margin-top: 50px;
    margin-bottom: -10px;
    text-align: center;
}

.product-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center; /* Center align the product boxes */
}

.product-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    width: 100%; /* Full width within the page container */
    max-width: 1200px; /* Control maximum width */
    margin: 0 auto; /* Center align the boxes */
    
}

.product-box.reverse {
    flex-direction: row-reverse;
}
#details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
    margin-top: 0;

}

#toggleButton {
    cursor: pointer;
    color: #004aad;
}
.text-content {
    max-width: 60%;
    text-align: left; 
    /* Text alignment for readability */
}

.text-content h2 {
    font-size: 28px;
    margin-bottom: 10px;
    text-align: center;
}

.text-content p {
    font-size: 18px;
    margin: 0 0 0 0;
}

.image-placeholder {
    width: 40%; /* Adjust width for consistency */
    height: 400px;
    background-color: #000000;
}

/* Last Product Box Styling */
.product-box.full-width {
    flex-direction: column;
    text-align: center;
}

.product-box.full-width .text-content {
    max-width: 100%;
}

.product-box.full-width .image-placeholder {
    width: 100%;
    height: 500px; /* Adjust height as needed */
}

/* Image Styles */
.image-placeholder {
    width: 100%; /* Full width of the container */
    height: 460px; /* Adjust height as needed */
    display: flex;
    justify-content: center;
    align-items: center; 
    overflow: hidden; 
    background-color: transparent;
}

.image-placeholder img {
    width: 100%;
    height: auto;
    object-fit: cover; 
}

.product-box.reverse .image-placeholder img {
    width: 90%;
    height: auto;
    object-fit: cover; 
}

/* Specific Image Adjustment */
.product-box.full-width .image-placeholder-chart-image img {
    width: 90%; 
    height: auto;
}

.text-content {
    max-width: 100%;
    text-align: justify;
}

.text-content p, .text-content ul {
    font-size: 18px;
    margin: 0 0 10px 0;
}

.text-content ul {
    list-style-type: disc;
    padding-left: 20px;
}

/* About Page Styles */
.about-page {
    background: rgb(0, 0, 0);
    padding: 50px 30px;
    color: rgb(255, 255, 255);
}

.about-page h1 {
    font-size: 50px;
    margin-bottom: 50px;
    text-align: center;
    color: #ffffff; /* Matching color of the button */
}

.about-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-left, .about-right {
    flex: 1;
}

.about-section {
    margin-bottom: 30px;
}

.about-left h2 {
    font-size: 32px;
    margin-top: -5px;
    margin-bottom: 10px;
    text-align: center;
}

.about-left .about-section-mission{
    font-size: 22px;
    margin: 0 0 0 0;
    text-align: justify;
    padding: 50px;
    background: linear-gradient(to left, #004aad, rgb(0, 0, 0));
    background-size: 200% 100%; /* Size of the gradient background */
    animation: gradientAnimation 5s ease-in-out infinite; /* Animation with smooth reverse */
    border-radius: 50px;
}

.about-right h2 {
    font-size: 32px;
    margin-top: -5px;
    margin-bottom: 10px;
    text-align: center;
}

.about-right .about-section-vision{
    font-size: 22px;
    margin: 0 0 0 0;
    text-align: justify;
    padding: 50px;
    background: linear-gradient(to right, #004aad, rgb(0, 0, 0));
    background-size: 200% 100%; /* Size of the gradient background */
    animation: gradientAnimation 5s ease-in-out infinite; /* Animation with smooth reverse */
    border-radius: 50px;
}

@keyframes gradientAnimation {
    0% {
        background-position: 0% 0%;
    }
    50% {
        background-position: 100% 0%;
    }
    100% {
        background-position: 0% 0%;
    }
}

.about-team {
    text-align: center;
    margin-top: 50px;
}

.about-team h2 {
    font-size: 50px;
    margin-bottom: 30px;
}

.team-members {
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
}

.team-member {
    text-align: center;
    max-width: 200px;
}

.team-member img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
}

.team-info {
    text-align: center;
}

.team-info h3 {
    font-size: 20px;
    margin: 5px 0;
}

.team-info p {
    font-size: 16px;
    color: gray;
    margin: 0 0 5px 0;
}

.linkedin-logo {
    font-size: 24px;
    color: #0077B5;
    text-decoration: none;
}

/* Pricing Page */

.pricing-page {
    text-align: center;
    padding: 50px 20px;
    background-color: #000;
    color: #fff;
}

.pricing-container {
    display:flex;
    justify-content: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;

}

.pricing-plan {
    background-color: #1a1a1a;
    border: 1px solid #333;
    border-radius: 10px;
    padding: 20px;
    width: 30%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s, border-color 0.3s;
}

.pricing-plan:hover {
    transform: scale(1.08);
}

.pricing-page h1 {
    font-size: 50px;
    margin-bottom: 80px;
    margin-top: 80px;
}

.pricing-plan h2 {
    font-size: 45px;
    margin-bottom: 10px;
}

.pricing-plan p {
    font-size: 1em;
    margin-bottom: 20px;
}

.pricing-plan ul {
    list-style: none;
    padding: 0;
    margin: 0 0 10px 0;
}

.pricing-plan ul li {
    margin-bottom: 10px;
    text-align: center;
    color: lightgray;
    font-size: 30px;
}

.pricing-plan {
    border: 2px solid #ddd;
    padding: 10px;
    margin: 8px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}
  
.pricing-plan::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    border: 3px solid transparent;
    box-sizing: border-box;
    z-index: 1;
}
  
.pricing-plan:hover::before {
    animation: borderLoading 2s linear infinite;
}
  
.pricing-plan h3, .card p {
    position: relative;
    z-index: 2;
}
  
@keyframes borderLoading {
    0% {
      border-color: #004aad transparent transparent transparent;
    }
    25% {
      border-color: transparent #004aad transparent transparent;
    }
    50% {
      border-color: transparent transparent #004aad transparent;
    }
    75% {
      border-color: transparent transparent transparent #004aad;
    }
    100% {
      border-color: #004aad transparent transparent transparent;
  }
}

/* Book a demo */
.modal {
    display: none;
    position: fixed;
    border-radius: 35px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    justify-content: center;
    align-items: flex-start;   
    margin-top: 0px;
    z-index: 1000;
    opacity: 0; /* Initial opacity */
    transform: translateY(-10%); /* Initial transform */
    transition: opacity 0.5s ease, transform 0.5s ease; /* Smooth transition */
}


.modal-content {
    background-color: black;
    margin: 10% auto;
    padding: 15px;
    border: 1px solid #004aad;
    width: 70%;
    max-width: 400px;
    border-radius: 20px;
    border-width: 5px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    animation: slideIn 0.5s ease-out; /* Slide in animation */
}

.modal-content h2 {
    text-align: center;
    font-size: 1.5rem;
}

@keyframes slideIn {
    from {
        transform: translateY(-50%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}


.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    top: 10px;
    right: 20px;
}

.close:hover,
.close:focus {
    color: red;
    text-decoration: none;
    cursor: pointer;
}

label {
    display: block;
    text-align: left;
    margin: 10px 0 5px;
    font-weight: bold;
}

input, select {
    width: 100%;
    padding: 10px;
    margin: 5px 0 20px;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 10px;
    box-sizing: border-box;
}
.name-container {
    display: flex;
    justify-content: space-between;
}

.name-container .form-group {
    width: 48%;
}

button[type="submit"] {
    background-color: #004aad;
    color: white;
    padding: 15px 20px;
    border: none;
    cursor: pointer;
    border-radius: 35px;
    width: 100%;
    font-size: 16px;
    font-weight: bold;
}

button[type="submit"]:hover {
    background-color:#004aad;
}

/* Contact Section Styles */
.contact-page {
    padding: 50px;
    text-align: center;
    background-color: #000000;
    font-size: 40px;
    margin-top: 60px;
}

.contact-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
}

.contact-icon {
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
    font-size: 100px;
}

.contact-icon .contact-logo {
    font-size: 70px;
    color: #004aad;
}

.contact-icon:hover {
    transform: scale(1.05);
}

/* Footer Styles */
.footer {
    background-color: #333;
    padding: 10px;
    text-align: center;
    color: #fff;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-content p {
    margin: 0;
    font-size: 12px;
}

.footer .footer-logo {
    font-size: 25px;
    color: #0077B5;
}
@media (min-width: 769px) {
    .sidebar {
        display: none;
    }
}
@media(max-width: 800px) {
    .menu-button {
        display: block;
        padding: 35px;
    }
    nav ul {
        display: none;
    }
    .sidebar {
        display: none;
    }
    .sidebar li {
        font-size: 10px;
    }
}

@media(max-width: 400px) {
    .sidebar {
        width: 100%;
    }
}

/* Show Sidebar */
.sidebar.show {
    display: flex;
}

@media only screen and (max-width: 768px) {
    .modal {
        position: fixed; /* Ensure the modal stays fixed */
        top: 10%; /* Adjust the top position */
        left: 50%; /* Center horizontally */
        transform: translate(-50%, 0); /* Center horizontally */
        width: 80%; /* Reduce width to fit better on small screens */
        max-width: 400px; /* Maintain the max width */
        padding: 15px; /* Add padding for content spacing */
        max-height: 60vh; /* Limit the height */
        background-color: rgba(0, 0, 0, 0.4); /* Keep background semi-transparent */
        border-radius: 8px; /* Add rounded corners */
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); /* Add subtle shadow for depth */
    }
    
    .modal-content {
        margin: 0 auto; /* Center content within modal */
        padding: 15px;
        width: 100%; /* Ensure content width adjusts */
        max-width: 400px; /* Maintain the max width */
    }

    .modal-header {
        font-size: 16px; /* Adjust header font size */
        padding-bottom: 10px; /* Add space below header */
    }
    
    .modal-body {
        font-size: 14px; /* Adjust body font size */
        padding-bottom: 15px; /* Add space below body */
    }
    .modal.show{
        transform:translateX(-55%);
    }
}


@media only screen and (max-width: 768px) {
    /* Header adjustments */
    .header-content {
        flex-direction: column;
        align-items: center;
    }

    .logo {
        display: flex;
        align-items:end;
        margin-right: 250px;
    }
    
    .logo-img {
        width: 60px;
        height: 60px;
    }

    nav ul {
        flex-direction: column;
        gap: 15px;
    }

    nav a {
        font-size: 18px;
    }

    #book-demo-btn {
        font-size: 15px;
        padding: 0px 0px;
    }

    /* Sidebar adjustments */
    .sidebar {
        width: 100%;
        height: auto;
        padding: 10px 0;
    }

    .sidebar a {
        font-size: 16px;
    }

    /* Mobile Menu Button */
    .menu-button {
        display: block;
        position: absolute; /* Position it absolutely */
        top: 25px; /* Distance from the top */
        right: 45px; /* Distance from the right */
        color: white;
        padding: 10px 20px;
        font-size: 22px;
        border-radius: 20px;
        z-index: 1000; /* Ensure it's above other elements */
    }

    nav ul {
        display: none;
        flex-direction: column;
    }

    .menu-button.active + nav ul {
        display: flex;
    }
}

@media only screen and (max-width: 768px) {
    .landing {
        padding: 200px 20px 20px;
        flex-direction: column;
        align-items: center;
        min-height: 10vh;
    }

    .text-content {
        max-width: 100%;
        text-align: center;
    }

    .text-content h1 {
        font-size: 34px;
    }

    .text-content .slogan {
        font-size: 18px;
    }

    .image-placeholder {
        width: 80%;
        height: auto;
        margin: 20px 0;
    }
    .image-placeholder-chart-image{
        width:120%;
    }
}

@media only screen and (max-width: 768px) {
    .info-boxes {
        flex-direction: column;
    }
    .product-page h1{
        font-size: 32px;
    }
    .product-box {
        flex-direction: column;
        text-align: center;
    }

    .product-box.reverse {
        flex-direction: column;
    }

    .image-placeholder {
        width: 100%;
        height: auto;
    }

    .text-content h2 {
        font-size: 24px;
    }
}

@media only screen and (max-width: 768px) {
    .about-container {
        flex-direction: column;
        align-items: center;
    }

    .about-left, .about-right {
        flex: 1;
        width: 100%;
        text-align: center;
    }

    .team-members {
        align-items: center;
        flex-direction: column;
        gap: 20px;
    }

    .team-member img {
        width: 150px;
        height: 150px;
    }

    .about-left h2, .about-right h2 {
        font-size: 28px;
    }

    .about-section {
        margin-bottom: 20px;
    }

    .about-left .about-section-mission, .about-right .about-section-vision {
        padding: 20px;
        font-size: 18px;
    }
}

@media only screen and (max-width: 768px) {
    .pricing-container {
        flex-direction: column;
        align-items: center;
    }

    .pricing-plan {
        width: 80%;
        margin-bottom: 20px;
    }

    .pricing-plan h2 {
        font-size: 24px;
    }

    .pricing-plan ul {
        font-size: 16px;
    }
}

@media only screen and (max-width: 768px) {
    body {
        font-size: 16px;
    }

    h1 {
        font-size: 28px;
    }

    h2 {
        font-size: 24px;
    }

    p {
        font-size: 16px;
    }

    .container {
        padding: 20px;
    }
    .contact-icon .contact-logo {
        font-size: 50px;
    }
}

