@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');

:root {
    --background-color: #ffffff;
    --default-color: #000000;
    --heading-color: #2d465e;
    --accent-color: #0092d8;
    --surface-color: #ffffff;
    --contrast-color: #ffffff;
}

/* Nav Menu Colors  */
:root {
    --nav-color: #212529;
    --nav-hover-color: #0092d8;
    --nav-mobile-background-color: #ffffff;

}

body {
    font-family: "Manrope", serif;
    font-optical-sizing: auto;
    font-weight: 600;
    max-width: 1900px;
    margin: 0 auto;
    font-style: normal;
    overflow-x: hidden !important;
    background-color: white;
}

/* header */
.header {
    --background-color: rgba(255, 255, 255, 0);
    color: var(--default-color);
    background-color: var(--background-color);
    max-width: 1900px;
    margin: 0 auto;
    transition: all 0.5s;
    z-index: 997;

}


.header .header-container {
    background: var(--surface-color);

    padding: 0px 55px;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    text-decoration: none;

}

.scrolled .header .header-container {
    background: color-mix(in srgb, var(--surface-color), transparent 5%);

}

.header .logo {
    line-height: 1;
    padding-left: 5px;
    margin: -17px;
}

.header .logo img {
    max-height: 140px;
    margin-right: 8px;

}

.navmenu a {
    text-decoration: none;
    background-color: #ffffff;
}

.header .btn-getstarted,
.header .btn-getstarted:focus {

    text-decoration: none;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
    color: var(--contrast-color);
    background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.navmenu .dropdown ul {
    background-color: white;
    padding: 0;

    margin: 0;
    list-style: none;
}

/* Optional: Style the dropdown items */
.navmenu .dropdown ul li a {
    color: black;
    padding: 15px 15px;
    text-decoration: none;
    display: block;
    padding-bottom: 21px !important;
}

.navmenu .dropdown ul li a.last-child {
    padding-bottom: 10px !important;
}

.navmenu .dropdown ul li {
    color: black;

    margin-top: -9px;
    text-decoration: none;
    display: block;
}

/* Optional: Add hover effect */
.navmenu .dropdown ul li a:hover {
    background-color: var(--accent-color);
}


@media (max-width: 1200px) {


    .header .header-container {
 
        padding: 10px 5px 10px 15px;
    }

    .header .logo {
        order: 1;
        padding-left: 30px;
    }

    .header .btn-getstarted {
        order: 2;
        margin: 0 10px 0 0;
        padding: 6px 15px;
    }

    .header .navmenu {
        order: 3;
    }
}

@media (min-width: 1200px) {
    .navmenu {
        padding: 0;
    }

    .navmenu ul {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center;
    }

    .navmenu li {
        position: relative;
    }

    .navmenu a,
    .navmenu a:focus {
        color: var(--nav-color);
        padding: 18px 15px;
        font-size: 16px;
        font-family: var(--nav-font);
        font-weight: 400;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
    }

    .navmenu a i,
    .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        transition: 0.3s;
    }

    .navmenu li:last-child a {
        padding-right: 0;
    }

    .navmenu li:hover>a,
    .navmenu .active,
    .navmenu .active:focus {
        color: var(--nav-hover-color);
    }

    .navmenu .dropdown ul {
        margin: 0;
        padding: 10px 0;
        background: var(--nav-dropdown-background-color);
        display: block;
        position: absolute;
        visibility: hidden;
        left: 14px;
        top: 130%;
        opacity: 0;
        transition: 0.3s;
        border-radius: 4px;
        z-index: 99;
        box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    }

    .navmenu .dropdown ul li {
        min-width: 200px;
    }

    .navmenu .dropdown ul a {
        padding: 10px 20px;
        font-size: 15px;
        text-transform: none;
        color: var(--nav-dropdown-color);
    }

    .navmenu .dropdown ul a i {
        font-size: 12px;
    }

    .navmenu .dropdown ul a:hover,
    .navmenu .dropdown ul .active:hover,
    .navmenu .dropdown ul li:hover>a {
        color: var(--nav-dropdown-hover-color);
    }

    .navmenu .dropdown:hover>ul {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }

    .navmenu .dropdown .dropdown ul {
        top: 0;
        left: 100%;
        visibility: hidden;
    }

    .navmenu .dropdown .dropdown:hover>ul {
        opacity: 1;
        top: 0;
        right: 100%;
        visibility: visible;
        width: 115%;
    }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {

    .mobile-nav-toggle {
        color: var(--nav-color);
        font-size: 28px;
        line-height: 0;
        margin-right: 10px;
        cursor: pointer;
        transition: color 0.3s;

    }

    .navmenu {
        padding: 0;
        z-index: 9997;
    }

    .navmenu ul {
        display: none;
        list-style: none;
        position: absolute;
        inset: 60px 20px 20px 20px;
        padding: 10px 0;
        margin: 0;
        border-radius: 6px;
        background-color: var(--nav-mobile-background-color);
        overflow-y: auto;
        transition: 0.3s;
        z-index: 9998;
        box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    }

    .navmenu a,
    .navmenu a:focus {
        color: var(--nav-dropdown-color);
        padding: 10px 20px;
        font-family: var(--nav-font);
        font-size: 17px;
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
    }

    .navmenu a i,
    .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: 0.3s;
        background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    }

    .navmenu a i:hover,
    .navmenu a:focus i:hover {
        background-color: var(--accent-color);
        color: var(--contrast-color);
    }

    .navmenu a:hover,
    .navmenu .active,
    .navmenu .active:focus {
        color: var(--nav-dropdown-hover-color);
    }

    .navmenu .active i,
    .navmenu .active:focus i {
        background-color: var(--accent-color);
        color: var(--contrast-color);
        transform: rotate(180deg);
    }

    .navmenu .dropdown ul {
        position: static;
        display: none;
        z-index: 99;
        padding: 10px 0;
        margin: 10px 20px;
        background-color: var(--nav-dropdown-background-color);
        border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
        box-shadow: none;
        transition: all 0.5s ease-in-out;
    }

    .navmenu .dropdown ul ul {
        background-color: rgba(33, 37, 41, 0.1);
    }

    .navmenu .dropdown>.dropdown-active {
        display: block;
        background-color: rgba(33, 37, 41, 0.03);
    }

    .mobile-nav-active {
        overflow: hidden;
    }

    .mobile-nav-active .mobile-nav-toggle {
        color: #fff;
        position: absolute;
        font-size: 32px;
        top: 15px;
        right: 15px;
        margin-right: 0;
        z-index: 9999;
    }

    .mobile-nav-active .navmenu {
        position: fixed;
        overflow: hidden;
        inset: 0;
        background: rgba(33, 37, 41, 0.8);
        transition: 0.3s;
    }

    .mobile-nav-active .navmenu>ul {
        display: block;
    }
}


@media (max-width: 600px) {

    .header .header-container {
        padding: 10px 15px;
        /* Adjust padding */
    }

    .header .logo img {
        max-height: 70px;
        /* Further reduce logo size */
    }

    .navmenu a {
        padding: 10px 5px;
        /* More compact navigation items */
    }

    .header .btn-getstarted {
        font-size: 0.7rem;
        /* Smaller button text for mobile */
    }

}

/* hero */
.video-background {
    background: url('pics/bhaggherrro2.png') no-repeat center center/cover;
    position: relative;
    height: 650px;
    /* Adjust as needed */
    max-width: 1900px;
    margin: 0 auto;
    overflow: hidden;
    display: flex;
    align-items: center;
    /* Center content vertically */
    justify-content: center;
    /* Center content horizontally */
}


.content {
    position: relative;
    z-index: 2;
    margin-top: 100px;
    color: white;
    text-align: left;
    max-width: 650px;
    padding: 0px 20px;
    margin-right: 700px
}

.content h5 {
    font-size: 4.5rem;
    /* Responsive font size */
    margin-bottom: 1rem;

}

.content h1 {
    font-size: 4.5rem;
    /* Responsive font size */
    margin-bottom: 1rem;
    font-weight: bold;

}

/*  */

.intro-section {
    background: url('pics/bhagind.png') no-repeat center center/cover;
    color: white;
    padding: 120px 20px;
    max-width: 1900px;
    margin: 0 auto;
    text-align: center;
    border-radius: 10px;
    position: relative;
}

.intro-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 10px;
}

.intro-content {
    position: relative;
    z-index: 1;
}

.feature-box {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.feature-box:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.feature-box h3 {
    background: linear-gradient(135deg, #006aff, #8119e2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
    font-size: 1.5rem;
    font-weight: bold;
}

.feature-box i {
    font-size: 50px;
    background: linear-gradient(135deg, #006aff, #8119e2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
}

/* abt */
#about-us {
    background: white;
    padding: 4rem 0;
    max-width: 1900px;
    margin: 0 auto;
}

#about-us h2 {
    font-weight: 700;
    color: #000000;
    text-align: left;
}

.about-img {
    height: 650px;
    width: 1300px;
}

#about-us p {
    font-size: 1.1rem;
    color: #000000;
    text-align: justify;
}

#about-us .btn-primary {
    background: linear-gradient(135deg, #006aff, #8119e2);

    transition: background-color 0.3s, transform 0.3s;
}

#about-us .btn-primary:hover {
    transform: translateY(-3px);
}

/* About Us Video */
.about-video {
    width: 100%;
    border-radius: 10px;


}


@media (max-width: 768px) {
    .about-video {
        width: 100%;
        /* Full width on smaller screens */
        height: auto;
        /* Adjust height proportionally */
    }
}



/* sol */
.timeline {
    position: relative;
    padding: 20px 0;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background: linear-gradient(135deg, #006aff, #8119e2);
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-in-out;
}

.timeline-item.show {
    opacity: 1;
    transform: translateY(0);
}

.timeline-item:nth-child(odd) {

    text-align: left;
}

.timeline-item:nth-child(even) {
    text-align: right;
}

.timeline-badge {
    position: absolute;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #006aff, #8119e2);
    border-radius: 50%;
    left: 50%;
    transform: translateX(-50%);
    top: 10px;
    box-shadow: 0px 0px 10px rgba(0, 107, 255, 0.5);
}

.timeline-content {
    padding: 20px;
    background: #ffffff;
    border-radius: 10px;
    display: inline-block;
    max-width: 45%;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    text-align: left;
    font-size: 1rem;
    font-weight: 200px;
}

.timeline-content h4 {
    background: linear-gradient(135deg, #006aff, #8119e2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bolder;
}

.timeline-content ul {
    padding-left: 20px;
    list-style: none;
    /* Removes default bullets */
}

.timeline-content li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 25px;
}

.timeline-content li::before {
    content: '•';
    position: absolute;
    left: 0;
    font-size: 1.2em;
    font-weight: bold;
    background: linear-gradient(135deg, #006aff, #8119e2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2.5rem;
    font-weight: bold;
}

@media (max-width: 768px) {
    .timeline::after {
        left: 20px;
    }

    .timeline-badge {
        left: 20px;
    }

    .timeline-content {
        max-width: 80%;
    }

    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        text-align: left;
        margin-left: 40px;
    }
}


.content-section {
    padding: 50px 0;
}

.card {
    border: none;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding: 20px;
}

.card img {
    max-width: 100%;

    height: 400px;
    border-radius: 10px;
}

.icon-box img {
    width: 80px;
    height: 80px;
    margin-bottom: 10px;
}

.results-chart img {
    width: 100%;
    max-width: 600px;
    margin: 20px auto;
    display: block;
}





/* Next-gen POS Sections - */
.next-gen-section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    gap: 70px;
    background-color: #ffffff;
    margin: 0 auto;
    max-width: 1880px;

}

.serviceheader {
    font-size: 3rem;

}

.blueee {
    background: linear-gradient(135deg, #006aff, #8119e2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.next-gen-section.reverse {
    flex-direction: row-reverse;

    padding: 50px;
    max-width: 1820px;
}


.custom-image {
    flex: 1;
    display: flex;
    justify-content: center;
    /* Center the image horizontally */
}

.custom-image img {
    width: 1900px;
    height: auto;

    border-radius: 8px;

}


.custom-text {
    flex: 1;
    text-align: left;

    padding: 0px;

}

.custom-heading {
    font-size: 2.5rem;
    /* Larger heading */
    font-weight: bold;
    margin-bottom: 15px;
    max-width: 400px;
    background: linear-gradient(135deg, #00b3ff, #7a12dc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;


}

.custom-text p {
    font-size: 1.5rem;
    /* Standard font size */
    line-height: 1.6;
    /* Improved readability */
    color: #6c757d;
    margin-bottom: 15px;
}

.explore-link {
    color: #007bff;
    /* Blue link color */
    text-decoration: none;
    /* Remove underline */
    font-weight: bold;
}



@media (max-width: 768px) {
    .next-gen-section {
        flex-direction: column;
        /* Stack elements vertically */
        text-align: center;
        /* Center-align text */
        gap: 20px;
        /* Adjust gap for smaller screens */
    }

    .next-gen-section.reverse {
        flex-direction: column;
        /* Reverse stacked order */
    }

    .custom-image img {
        max-width: 80%;
        /* Smaller image width on mobile */
    }
}





#products-services {
    background: #f8f9fa;
    padding: 3rem 0;
}


#products-services h2 {
    background: linear-gradient(135deg, #006aff, #8119e2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    margin-bottom: 2rem;
}

#products-services .card {
    transition: transform 0.3s ease;
}

#products-services .card:hover {
    transform: translateY(-5px);
}

.btn-outline-primary {
    transition: background-color 0.3s, color 0.3s;
}

.btn-outline-primary:hover {
    background: linear-gradient(135deg, #006aff, #8119e2);
    color: #fff;
}





.nav-tabs {
    display: flex;
    justify-content: center;
    border-bottom: none;

}

.nav-tabs .nav-item {
    margin: 0 15px;
    /* Adds spacing between tabs */
}

.nav-tabs .nav-link {
    font-weight: 600;
    color: #495057;
    transition: color 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.nav-tabs .nav-link.active,
.nav-tabs .nav-link:hover {
    color: #0d6efd;
}

.icon-gradient {
    font-size: 2.5rem;
    background: linear-gradient(135deg, #006aff, #8119e2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


.tab-content {
    text-align: center;
}

.card {
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}




.tech-img {
    max-width: 100%;

    height: auto;
    border-radius: 10px;
}

.list-unstyled {
    margin: 0 auto;
    max-width: 350px;
    text-align: left;
}

.list-unstyled li {

    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

.list-unstyled i {
    margin-right: 10px;
    font-size: 1.5rem;
    background: linear-gradient(135deg, #006aff, #8119e2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Responsive Adjustments */
@media (max-width: 1400px) {
    .content {
        margin-right: 400px;
    }
}

@media (max-width: 1200px) {
    .content {
        margin-right: 200px;
    }

    .content h5,
    .content h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 992px) {
    .video-background {
        height: 500px;
    }

    .content {
        text-align: center;
        margin: 0 auto;
    }

    .content h5,
    .content h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .video-background {
        height: 400px;
    }

    .content {
        text-align: center;
        margin: 0 auto;
    }

    .content h5,
    .content h1 {
        font-size: 2rem;
    }
}


/* test */
.test-cont {
    background-color: #ffffff;
    height: 800px;
    max-width: 1900px;
    margin: 0 auto;

}

.testimonial-heading {
    font-weight: bold;
    font-size: 3rem;
    text-align: center;
    background: linear-gradient(135deg, #006aff, #8119e2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-carousel {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 0.5rem;
    text-align: center;

    max-width: 800px;
    margin: 0 auto;

}

.carousel-item {
    font-size: 1rem;


}



.quote-container {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10rem;
    /* Adjust size as needed */
    background: linear-gradient(135deg, #006aff, #8119e2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.quote-icon {
    margin: 0 10px;
    /* Space around the quotes */
}

.quote-text {
    font-size: 1.5rem;
    /* Adjust text size */
    font-style: italic;
    /* Italicize the quote text */
}


/* Quick Start Package */
.quickstart-container {
    background: #ffffff;
    color: #000000;
    max-width: 1250px;
    margin: 0 auto;

}


.quickstart-header {
    font-size: 2.5rem;
    font-weight: bold;
}

.quickstart-subtext {
    font-size: 1.2rem;
    color: #000000;
    max-width: 700px;
    margin: auto;
    text-align: left;
}

.divider {
    width: 100px;
    height: 4px;
    background: #007bff;
    border-radius: 10px;
    margin-top: 10px;
}


.quickstart-item {
    background: white;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease-in-out;
    border: 1px solid #ddd;
    height: 400px;
    width: 400px;

    display: flex;
    flex-direction: column;
    justify-content: space-around;
}


.quickstart-item p {
    flex-grow: 1;
}


.quickstart-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}


.quickstart-title a {
    font-size: 1.4rem;
    font-weight: bold;
    margin-top: 25px;
    color: #222;
    text-align: left;
    text-decoration: none;
}

.quickstart-title a:hover {

    color: var(--accent-color);

}

.quickstart-title a {
    font-size: 1.1rem;
    font-weight: bold;
    margin-top: 15px;
    color: #000000;
    text-align: left;
}


.quickstart-text {
    font-size: 1rem;
    color: #000000;
    text-align: left;
}

.quickstart-image {
    width: 360px;
    height: 200px;

}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 55px;
    height: 55px;
    margin: -70px;
    top: 65%;
    background: #007bff;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
}

.carousel-control-icon {
    font-size: 28px;
}

.carousel-control-icon {
    font-size: 28px;
}






/* form */
/* Root Form Container */
.form-container {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1900px;
    height: 700px;
    /* Fixed height */
    overflow: hidden;
    /* No scrolling */
    background-color: #f9faff;
    /* Background color */
    margin: 0 auto;
}

/* Row */
.form-row {
    display: flex;
    justify-content: space-between;
    width: 90%;
    max-width: 1200px;
}

/* Left Section */
.form-col-left {
    width: 40%;
    margin-top: 160px;
    padding-right: 20px;
}

.form-heading {
    font-size: 2rem;
    font-weight: bold;
    color: #212529;
    line-height: 1.4;
}

.form-highlight {
    background: linear-gradient(135deg, #006aff, #8119e2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
}

.form-subtext {
    font-size: 1rem;
    color: #495057;
    margin-top: 1rem;
}

.form-arrow {
    font-size: 1.2rem;
    background: linear-gradient(135deg, #006aff, #8119e2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
}

/* Right Section */
.form-col-right {
    width: 50%;
}

.form-card {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 0;
    /* No border radius */
    border: 1px solid #ddd;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    height: auto;
    max-width: 700px;
    margin: 0 auto;
}

/* Form Heading */
.form-h5 {
    font-size: 1.25rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
    color: #343a40;
}

/* Form Group */
.form-group {
    margin-bottom: 15px;
}

.form-label {
    font-weight: 600;
    color: #495057;
    margin-bottom: 5px;
    display: block;
}

.form-input {
    width: 100%;
    padding: 10px;
    font-size: 0.9rem;
    border: 1px solid #ced4da;
    border-radius: 0;
    /* No border radius */
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-input:focus {
    background: linear-gradient(135deg, #006aff, #8119e2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.25);
    outline: none;
}

/* Submit Button */
.form-submit {
    width: 100%;
    padding: 10px;
    font-size: 1rem;
    background: linear-gradient(135deg, #006aff, #8119e2);

    color: #ffffff;
    border: none;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.form-submit:hover {
    background-color: #0056b3;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
    }

    .form-col-left,
    .form-col-right {
        width: 100%;
    }

    .form-col-left {
        padding-right: 0;
        margin-bottom: 20px;
    }
}