body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

/* header style */
header {
    background: rgba(17, 24, 39, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.logo {
    height: 40px;
    z-index: 1001;
}

.logo img {
    height: 100%;
    width: auto;
}

#menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    color: #fff;
}

nav {
    display: flex;
    gap: 2rem;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #60A5FA;
}

@media (max-width: 768px) {
    #menu-btn {
        display: block;
        width: 10%;
    }

    nav {
        position: absolute;
        top: 100%;
        right: 0;
        background: rgba(17, 24, 39, 0.95);
        flex-direction: column;
        padding: 1rem;
        gap: 1rem;
        min-width: 200px;
        border-radius: 0 0 8px 8px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        transform: translateY(-10px);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    nav a {
        padding: 0.5rem 1rem;
        width: 100%;
    }

    nav a:hover {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 4px;
    }
}

/* header style end */
.content-section {
    padding: 100px 20px;
    min-height: 50vh;
    opacity: 0;

    background-color: #f9f9f9;
    text-align: left;
    transition: opacity 0.5s ease-in-out;
}

.content-section.visible {
    opacity: 1;
}


.section-title {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
    text-align: center;
}

.about-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.about-content strong {
    color: #333;
}

/* #video-section {
    text-align: center;
    position: relative;
    padding-top: 100px;
}

#video-section video {
    max-width: 100%;
    margin: 20px 0;
} */
.video-section {
    position: relative;
    width: 100%;
    height: 400px;
    margin-bottom: 20px;
}

.video-section video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-section .title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 12em;
    text-align: center;
    opacity: 0;
    animation: fadeIn 10s forwards;
}

/* .video-section .title-description {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    text-align: center;
    font-size: 10em;
} */

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    /* 50% {
        opacity: 1;
    } */

    100% {
        opacity: 1;
    }
}

.title-description {
    margin-top: 20px;
    font-size: 1.2em;
    /* color: white; */
    /* opacity: 0; */
}

@keyframes typing {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

.typing-container {
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
    border-right: 3px solid;
    animation: typing 9.5s steps(40, end) forwards, blink 1.25s step-end infinite;
    max-width: 100%;
}

@keyframes blink {
    50% {
        border-color: transparent;
    }
}

.video-section .video-control {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 10px;
    cursor: pointer;
}

.video-section #request-demo-btn {
    position: absolute;
    top: 100px;
    /* left: 50%; */
    right: 10%;
    width: 200px;
    height: 60px;
    border-radius: 5px;
    padding: 10px 20px;
    background-color: #4d75ec;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 20px;
    text-align: center;
    /* right: 20px; */
}

.buttons {
    margin: 10px;
}

.buttons button {
    margin: 5px;
    padding: 10px;
    font-size: 16px;
}

/* #request-demo-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 10px 20px;
    background-color: #007BFF;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 16px;
} */

#request-demo-btn:hover {
    background-color: #0056b3;
}

.section-title {
    font-size: 28px;
    font-weight: bold;
    text-align: left;
    margin-bottom: 20px;
}

.grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: center;


}

@media (max-width: 768px) {
    .grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

.about-text {
    order: 1;
    /* width: 50%; */
}

.about-image img {
    width: 100%;
    border-radius: 8px;
}



/* feature section*/


/* .features-section {
    padding: 4rem 1rem;
    background-color: #f9fafb;
} */

.features-section {
    /* max-width: 1600px; */
    margin: 0 auto;
    padding: 4rem 2rem;
    position: relative;
    background: white;
}

.features-section-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 3rem;
    text-align: center;
    color: #333;
}

.features-content {
    display: flex;
    gap: 2rem;
    position: relative;
}

.gradient-mask {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.gradient-mask img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gradient-mask::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;

    background: radial-gradient(circle at center,
            transparent 30%,
            white 60%);
}




.features-column {
    flex: 1;
}

.feature-card {
    padding: 1rem;
    margin-bottom: 1rem;
    /* border: 1px solid #e5e7eb; */
    border-radius: 0.5rem;
    transition: box-shadow 0.3s ease;
    /* background: white; */
}

.feature-card:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.feature-content {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.icon-wrapper {
    margin: 1rem;
    padding: .5rem;
    /* background-color: #dbeafe; */
    background-color: rgb(235, 227, 247);
    border-radius: 0.5rem;
    flex-shrink: 0;
}

.icon-wrapper svg {
    width: 48px;
    height: 48px;
    /* color: #2563eb; */
    color: rgb(142, 6, 239)
}

.feature-text {
    flex: 1;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.5rem;
}

.feature-description {
    color: #4b5563;
    line-height: 1.625;
}

@media (max-width: 768px) {

    .features-content {
        flex-direction: column;
    }

    .gradient-mask {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0.2;
    }

    .gradient-mask::after {
        display: none;
    }


    /* .feature-card {
        padding: 1rem;
        margin-bottom: 1rem;
   
    border-radius: 0.5rem;
    transition: box-shadow 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

*/
}



/* feature section end */




/* price style*/

.pricing-section {
    position: relative;
    padding: 4rem 1rem;
    color: white;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* background: none; */
    /* Remove any existing background */
}



/* Background image container */
.price-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    overflow: hidden;
}

.price-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* This ensures the image covers the entire container */
    position: absolute;
    top: 0;
    left: 0;
}

/* Dark overlay */
.price-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(79, 78, 78, 0.7), rgba(0, 0, 0, 0.8));
    z-index: 1;
}

.pricing-section>*:not(.price-image) {
    position: relative;
    z-index: 2;
}

/* Rest of the styles remain the same */
.price-section-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 3rem;
    text-align: center;
    color: #f9f9f9;
}

.pricing-container {
    display: flex;
    gap: 2rem;
    max-width: 1200px;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 2rem;
    width: 300px;
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.plan-name {
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 1rem;
}

.plan-price {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 2rem;
    color: #4CAF50;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.feature-item::before {
    content: '✓';
    margin-right: 0.5rem;
    color: #4CAF50;
    font-weight: bold;
}

.feature-item.unavailable {
    opacity: 0.5;
}

.feature-item.unavailable::before {
    content: '×';
    color: #ff4444;
}

.select-plan-btn {
    display: block;
    width: 100%;
    padding: 1rem;
    margin-top: 2rem;
    background: #4CAF50;
    border: none;
    border-radius: 0.5rem;
    color: white;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.select-plan-btn:hover {
    background: #45a049;
}

@media (max-width: 768px) {
    .pricing-container {
        flex-direction: column;
        align-items: center;
    }

    .pricing-card {
        width: 100%;
        max-width: 350px;
    }
}

/* price style */

/* whyus style*/
.whyus-section {
    position: relative;
    padding: 6rem 2rem;
    overflow: hidden;
    background: #f8f9ff;
}

.whyus-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    /* Takes up right half on large screens */
    height: 100%;
    z-index: 1;
}

.whyus-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.whyus-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right,
            rgba(248, 249, 255, 1) 0%,
            rgba(248, 249, 255, 0.5) 30%,
            rgba(248, 249, 255, 0.2) 100%);
}

.whyus-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    color: #2c3e50;
}

.whyus-section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    color: #1a237e;
    position: relative;
    font-weight: 700;
}

.whyus-section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #3f51b5;
    border-radius: 2px;
}

.whyus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.whyus-item {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(63, 81, 181, 0.1);
}

.whyus-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(63, 81, 181, 0.1);
}

.whyus-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #3f51b5;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 600;
}

.whyus-item h3::before {
    content: '→';
    font-size: 1.5rem;
    color: #3f51b5;
}

.whyus-item p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #546e7a;
}

/* Add subtle pattern to background */
.whyus-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 1px 1px, #3f51b5 1px, transparent 0);
    background-size: 40px 40px;
    opacity: 0.03;
    z-index: 1;
}

@media (max-width: 768px) {
    .whyus-section {
        padding: 4rem 1rem;
    }

    .whyus-section-title {
        font-size: 2.5rem;
    }

    .whyus-grid {
        grid-template-columns: 1fr;
    }
}

/* whyus style end */

/* flowchart style */
.flowchart-section {
    background: #1a1a2e;
    color: #fff;
    padding: 4rem 2rem;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.flowchart-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.4;
    z-index: 1;
}

.flowchart-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.flowchart-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
}

.flowchart-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;

}

.flowchart-content-item {
    /* background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;

    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1); */
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    position: relative;
    /* width: 250px; */
    /* overflow: hidden; */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);

}



.flowchart-content-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.flowchart-content-item h4 {
    /* margin: 0;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.15);
    color: #60A5FA;
    font-size: 1.25rem;
    border-radius: 15px; */
    margin: 0;
    padding: 15px 20px;
    background: rgba(237, 217, 217, 0.15);
    color: #60A5FA;
    font-size: 1.25rem;
    border-radius: 15px 15px 0 0;
}

.flowchart-content-item h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    /* background: #4f9eff; */
    border-radius: 2px;
}

.flowchart-content-item p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    padding: 10px;
}

.flowchart-item h4 {
    margin: 0;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.15);
    color: #60A5FA;
    font-size: 1.25rem;
}

.flowchart-item p {
    padding: 20px;
    margin: 0;
    color: #D1D5DB;
    font-size: 0.95rem;
}



/* Arrows */
.arrow-right::after {
    content: '→';
    position: absolute;
    right: -1.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: #4f9eff;
    font-size: 2rem;
    z-index: 3;
}

.arrow-down::after {
    content: '↓';
    position: absolute;
    bottom: -2rem;
    left: 50%;
    transform: translateX(-50%);
    color: #4f9eff;
    font-size: 2rem;
    z-index: 3;
}

.arrow-left::after {
    content: '←';
    position: absolute;
    left: -1.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: #4f9eff;
    font-size: 2rem;
    z-index: 3;
}

.arrow-down-right::after {
    content: '↳';
    position: absolute;
    bottom: -10rem;
    left: 50%;
    transform: translateX(-50%);
    color: #4f9eff;
    font-size: 2rem;
    z-index: 3;
}


/* Responsive Design */
/* @media (max-width: 1024px) {
    .flowchart-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .arrow-right,
    .arrow-left {
        display: none;
    }
} */

@media (max-width: 768px) {

    /* .flowchart-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    } */


    /* Switch to flex layout for mobile */
    .flowchart-grid {
        display: flex;
        /* Use flexbox for mobile */
        flex-direction: column;
        /* Stack items vertically */
        gap: 2rem;
        /* Increase gap for better readability */
    }

    /* Reorder flowchart items using the `order` property */
    #flowchart-content-title4 {
        order: 0
    }

    #flowchart-content-title5 {
        order: 1
    }

    #flowchart-content-title6 {
        order: 2
    }

    /* Fixing arrow positioning for small screens */
    .arrow-right::after,
    .arrow-left::after,
    .arrow-down::after,
    .arrow-down-right::after {
        content: '';
        position: absolute;
        bottom: -2rem;
        left: 50%;
        transform: translateX(-50%);
        color: #4f9eff;
        font-size: 2rem;
        z-index: 3;
    }







}

/* flowchart style end*/

/* contact style */
/* .content-section {
    background: white;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
} */

.contact-section {
    background: #f8f9ff;

    min-height: 100vh;
    position: relative;
    overflow: hidden;
    /* max-width: 1200px; */
    margin: 0 auto;
    width: 100%;
    min-height: 70vh;
    /* display: flex; */
    align-items: center;

}


.contact-image {

    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;


}

.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.contact-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right,
            rgba(248, 249, 255, 1) 0%,
            rgba(248, 249, 255, 0.5) 30%,
            rgba(248, 249, 255, 0.2) 100%);
}



.contact-section {
    /* max-width: 1200px; */
    margin: 0 auto;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}

.contact-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 70%;
    height: 100%;
    z-index: 1;
}

.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.form-container {
    width: 50%;
    padding: 3rem;
    position: relative;
    z-index: 2;
}

.contact-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 2rem;
    color: #333;
}

form {
    width: 100%;
    max-width: 500px;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    color: #555;
    font-weight: 500;
}

input,
textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #eee;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
}

input:focus,
textarea:focus {
    outline: none;
    border-color: #60A5FA;
}

input:disabled {
    background: #f5f5f5;
    cursor: not-allowed;
}

textarea {
    min-height: 150px;
    resize: vertical;
}

button {
    width: 100%;
    padding: 1rem;
    background: #81a9ea;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 2rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background: #3B82F6;
}

.contact-support-message {
    flex: 1;
    /* right: 0; */
    z-index: 3;
    /* max-width: 45%; */
    padding: 10px 10px 20px 20px;
}

.contact-support-message h2 {
    font-size: 2rem;
    font-weight: bold;
    color: #81a9ea;
}

.contact-support-message p {
    font-size: 1.1rem;
    color: #797676;
    line-height: 1.6;
    padding-top: 16rem;
}


@media (max-width: 768px) {
    .contact-section {
        flex-direction: column;
        /* Stack items vertically on mobile */
        padding: 2rem;
        justify-content: flex-start;
        /* Align to the top */
    }

    .contact-image {
        position: absolute;
        /* top: 0; */
        width: 100%;
        height: 100%;
        /* opacity: 0.2; */
    }

    .form-container {
        width: 70%;
        padding: 0;
        opacity: 0.9;
    }

    form {
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(10px);
    }

    .contact-support-message h2 {
        /* background-color: #0056b3; */
        font-size: 2rem;
        font-weight: bold;
        color: #2f6de8;
        /* max-width: infinite; */
    }

    .contact-support-message p {
        /* background-color: #0056b3; */
        font-size: 1.1rem;
        color: #797676;
        /* line-height: 1.6; */
        padding-top: 1rem;
    }
}

/* contact sytle end */


/* demo style */
.demo-section {
    position: relative;
    padding: 4rem 1rem;
    color: white;
    min-height: 120vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* background: none; */
    /* Remove any existing background */
}

.demo-support-message {
    flex: 1;
    /* max-width: 45%; */
}

.demo-support-message h2 {
    font-size: 2rem;
    font-weight: bold;
    color: #afdeec;
}

.demo-support-message p {
    font-size: 1.1rem;
    color: #e7e5e5;
    line-height: 1.6;
}


/* Background image container */

.demo-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    overflow: hidden;
}

.demo-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* This ensures the image covers the entire container */
    position: absolute;
    top: 0;
    left: 0;
}

/* Dark overlay */
.demo-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(79, 78, 78, 0.7), rgba(0, 0, 0, 0.8));
    z-index: 1;
}

.demo-section>*:not(.demo-image) {
    position: relative;
    z-index: 2;
}

/* Rest of the styles remain the same */
.demo-section-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 3rem;
    text-align: center;
    color: #81a9ea;
}

.demo-container {
    display: flex;
    gap: 2rem;
    max-width: 1200px;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
}



@media (max-width: 768px) {
    .pricing-container {
        flex-direction: column;
        align-items: center;
    }


}

.policy-agreement {
    font-size: 1rem;
    margin-top: 1rem;
    color: #555;
}

.policy-agreement p {
    margin: 10 10 10 10;
}

.policy-agreement a {
    color: #316fba;
    text-decoration: none;
}

.policy-agreement a:hover {
    text-decoration: underline;
}


/* tiral style end */

.form-group {
    /* margin: 15px 15px; */
    margin-right: 10px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding-right: 10px;
    margin-bottom: 10px;
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px 10px;
}

footer a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
}

footer a:hover {
    text-decoration: underline;
}

/* Larger screens */


/* .grid {
    grid-template-columns: 1fr 1fr;
} */

.about-text {
    order: 1;
}

.about-image {
    order: 2;
}


/* Responsive design */
@media (max-width: 768px) {


    /* nav {
        flex-direction: column;
        align-items: center;
        background-color: #333;
        position: absolute;
        top: 60px;
        
    right: 0;
    width: 100%;
    z-index: 1000;
    padding: 10px 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
     */
}

#request-demo-btn {
    position: static;
    margin: 20px 0;
    font-size: 14px;
    padding: 10px 15px;
}


.section-title {
    font-size: 22px;
}

.buttons button {
    font-size: 14px;
    padding: 8px 12px;
}


@media (max-width: 480px) {
    nav a {
        font-size: 14px;
    }

    #request-demo-btn {
        font-size: 12px;
        padding: 8px 10px;
    }

    .section-title {
        font-size: 20px;
    }

    .buttons button {
        font-size: 12px;
    }
}