@import url(reset.css);
:root {
    --app-body-background-color: #fff;
    --app-body-text-color: #565656;
    --app-body-box-shadow: 0 0.275rem 1.25rem rgb(11 15 25 / 5%), 0 0.25rem 0.5625rem rgb(11 15 25 / 3%);
    --app-gray-section: #f3f6ff;
    --app-title-color: #0b0f19;
    --app-header-background-color: #fff;
    --app-header-text-color: #0b0f19;
    --app-header-menu-text-color: #33354d;
    --app-button-background-color: #6366f1;
    --app-button-text-color: #fff;
    --app-button-hover-background-color: #fff;
    --app-button-hover-text-color: #6366f1;
    --app-footer-background-color: #0b0f19;
    --app-footer-text-color: #fff;
}

body {
    background-color: var(--app-body-background-color);
    color: var(--app-body-text-color);
}


/* ------------------------------- */


/* CSS Page Container              */


/* ------------------------------- */

.container {
    width: min(100% - 30px, 1080px);
    margin-inline: auto;
}


/* ------------------------------- */


/* HEADER                           */


/* ------------------------------- */

main {
    height: auto;
}

header {
    position: fixed;
    left: 0;
    top: 0;
    background-color: var(--app-header-background-color);
    height: 76px;
    width: 100%;
    z-index: 95;
}

header .flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .title {
    line-height: 76px;
    text-align: center;
    vertical-align: middle;
    color: var(--app-header-text-color);
    text-decoration: none;
}

header .title h1 {
    color: var(--app-header-text-color);
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.2px;
    line-height: 76px;
    margin-left: 5px;
}

nav {
    transition: all 0.25s ease-out;
}

nav ul li {
    display: inline;
    line-height: 76px;
}

nav ul li a,
.navbar i {
    color: var(--app-header-menu-text-color);
    /*line-height: 76px;*/
    font-size: 17px;
    font-weight: 500;
    text-decoration: none;
    letter-spacing: 0.2px;
    transition: all 0.25s ease-in-out;
    padding-left: 10px;
    padding-right: 10px;
}

.navbar i {
    font-size: 20px;
    font-weight: 600;
    line-height: 76px;
}

nav ul li a:hover {
    color: var(--app-button-hover-text-color);
}

.scrolled {
    animation: all .25s ease-in-out;
    box-shadow: var(--app-body-box-shadow);
}

@media (max-width:768px) {
    .show-nav {
        position: absolute;
        top: 0px;
        right: 0;
        background-color: var(--app-header-background-color);
        box-shadow: var(--app-body-box-shadow);
        z-index: 100;
        width: 250px;
        height: 100vh;
    }
    nav>ul {
        display: none;
    }
    .navbar {
        display: block;
        text-align: right;
    }
    nav ul li {
        text-align: right;
        line-height: 46px;
    }
    nav ul li~li {
        border-top: 1px solid rgba(250, 250, 250, 0.8);
    }
    nav ul li a:hover {
        border-bottom: none;
    }
    .show-menu-responsive {
        position: relative;
        top: 0px;
        right: 0px;
        background-color: #fff;
        border-top: 1px solid rgb(92 92 92 / 20%);
        z-index: 100;
        width: 250px;
    }
    .background-opacity-nav-open {
        position: fixed;
        top: 0;
        left: 0;
        z-index: 99;
        width: 100vw;
        height: 100vh;
        background-color: #000;
        opacity: 0.5;
    }
    .show {
        display: grid;
    }
    .not-show {
        display: none;
    }
}

@media (min-width:768px) {
    nav>ul {
        display: block;
    }
    .navbar {
        display: none;
    }
    .background-opacity-nav-open {
        display: none;
    }
}


/* ------------------------------- */


/* MAIN - HERO BANNER              */


/* ------------------------------- */

#hero-banner {
    height: 100vh;
    text-align: center;
    margin-top: 76px;
    overflow: hidden;
    display: grid;
    place-items: center;
    background: rgba(168, 168, 168, 1) url("../images/hero-banner.jpg") center center / cover no-repeat;
    background-attachment: fixed;
    background-blend-mode: multiply;
}

.content {
    display: flex;
    flex-direction: column;
    place-items: center;
    text-align: center;
    justify-content: center;
    place-content: center;
}

.h-text {
    display: flex;
    place-content: center;
    width: 60%;
    color: var(--app-gray-section);
    margin: auto;
}

h1.h-title {
    font-size: 35px;
    color: var(--app-body-background-color);
}

.about-text {
    font-size: 18px;
    font-weight: 500;
    margin-top: 15px;
}

.h-button {
    height: 50px;
    width: 170px;
    text-align: center;
    letter-spacing: 0.2px;
    font-weight: 600;
    font-size: 16px;
    border-radius: 10px;
    margin-top: 40px;
    box-shadow: 0 0.5rem 1.125rem -0.5rem rgb(99 102 241 / 90%);
    color: var(--app-button-text-color);
    background-color: var(--app-button-background-color);
    transition: all 0.25s ease-in-out;
}

.h-button:hover {
    background-color: var(--app-button-hover-background-color);
    color: var(--app-button-hover-text-color);
    cursor: pointer;
}

.n-index a {
    position: left;
    color: var(--app-body-background-color);
}

.nav-media {
    position: relative;
    height: 50px;
    display: flex;
    text-align: left;
    justify-content: space-between;
    position: center;
    place-items: center;
    line-height: 50px;
    top: 20vh;
}

#icon1,
.fa-solid {
    font-size: 24px;
    transition: all 0.25s ease-in-out;
    color: var(--app-button-text-color);
}

#icon1:hover,
.fa-solid:hover {
    font-size: 30px;
    color: var(--app-button-hover-text-color);
}

.btn-media+.btn-media {
    margin-left: 15px;
}

.nav-contact a {
    color: var(--app-button-text-color);
    text-decoration: none;
    font-size: 16px;
    transition: all 0.25s ease-in-out;
}

.nav-contact a:hover {
    font-size: 20px;
    color: var(--app-button-hover-text-color);
}

[data-animation-offset] {
    animation: trans 0.5s ease-in;
}

[data-animation-offset="first"] {
    animation-delay: 0.2s;
}

[data-animation-offset="second"] {
    animation-delay: 0.3s;
}

[data-animation-offset="third"] {
    animation-delay: 0.5s;
}

@keyframes trans {
    from {
        opacity: 0;
        translate: -25px 0;
    }
    to {
        opacity: 3;
        translate: 0 0;
    }
}

@media (max-width:768px) {
    h1.h-title {
        font-size: 24px;
    }
    .h-text {
        width: 90%;
    }
}

@media (min-width:768px) {
    h1.h-title {
        font-size: 35px;
    }
    .h-text {
        width: 60%;
    }
}


/* ------------------------------- */


/* MAIN - SERVCES                  */


/* ------------------------------- */

#our-services {
    width: 100%;
    display: grid;
    place-items: center;
    background-color: var(--app-gray-section);
    padding: 50px 0;
}

#our-services h1 {
    color: var(--app-title-color);
}

.vertical {
    display: flex;
    flex-wrap: wrap;
}

.horizontal {
    width: 100%;
    padding: 0 1em 1em 1em;
    text-align: center;
}

.board {
    width: 100%;
    height: 100%;
    padding: 2em 1.5em;
    background: linear-gradient(#ffffff 50%, #6366f1 50%);
    background-size: 100% 200%;
    background-position: 0 2.5%;
    border-radius: 5px;
    box-shadow: 0 0 35px rgba(0, 0, 0, 0.12);
    cursor: pointer;
    transition: 0.5s;
}

.section-heading {
    font-size: 30px;
    font-weight: 800;
    color: var(--app-title-color);
    text-align: center;
}

.service-para {
    color: var(--app-body-text-color);
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: 0.03em;
    padding: 15px 0px 15px 30px;
}

.board-heading {
    font-size: 20px;
    font-weight: 600;
    color: var(--app-title-color);
    margin: 1em 0;
}

.horizontal .board-para {
    color: var(--app-body-text-color);
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: 0.03em;
    text-align: justify;
}

.ikon-wrapper {
    background-color: var(--app-button-background-color);
    position: relative;
    margin: auto;
    font-size: 30px;
    height: 2.5em;
    width: 2.5em;
    color: #ffffff;
    border-radius: 50%;
    display: grid;
    place-items: center;
    transition: 0.5s;
}

.board:hover {
    background-position: 0 100%;
}

.board:hover .ikon-wrapper {
    background-color: #ffffff;
    color: var(--app-button-hover-text-color);
}

.board:hover .board-heading {
    color: #ffffff;
}

.board:hover p {
    color: #f0f0f0;
}

@media screen and (min-width: 768px) {
    section {
        padding: 0 2em;
    }
    .horizontal {
        flex: 0 50%;
        max-width: 50%;
    }
}

@media screen and (min-width: 992px) {
    section {
        padding: 1em 3em;
    }
    .horizontal {
        flex: 0 0 33.33%;
        max-width: 33.33%;
    }
}


/* ------------------------------- */


/* MAIN-CONTACT ME                 */


/* ------------------------------- */

#contact-us {
    background-color: var(--app-gray-section);
    padding: 80px 0;
    height: auto;
}

#contact-us .col-bg {
    height: auto;
    padding: 30px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

#contact-us .col-1 {
    width: calc(50% - 10px);
    flex-grow: 1 1 auto;
}

#contact-us .col-2 {
    width: calc(50% - 10px);
    padding-left: 40px;
    flex-grow: 1 1 auto;
}

#contact-us .info {
    margin-left: 80px;
}

#contact-us .col-2 p {
    line-height: 40px;
}

#contact-us .col-2>div {
    padding-bottom: 20px;
}

#contact-us .col2 p {
    text-align: left;
    letter-spacing: 0.03em;
    line-height: 1.6;
    margin-left: 40px;
}

#contact-us h1 {
    font-size: 30px;
    font-weight: 800;
    margin-top: 40px;
    text-align: center;
    color: var(--app-title-color);
    margin-bottom: 15px;
}

#icon2,
#icon3 {
    font-size: 18px;
    color: var(--app-button-background-color);
    transition: all 0.25s ease-in-out;
}

#contact-us p a {
    text-decoration: none;
    color: inherit;
}

#contact-us p a:hover {
    color: var(--app-button-hover-text-color);
}

.submit-feedback {
    color: var(--app-button-background-color);
    display: none;
    font-size: 18px;
}

.invalid-feedback {
    color: #ff0000;
    display: none;
    font-size: 14px;
}

@media (max-width:768px) {
    #contact-us .col-1,
    #contact-us .col-2 {
        width: 100%;
        padding: 0px;
    }
    #contact-us .col-2 {
        margin-top: 30px;
    }
    #contact-us .col-1 {
        margin-top: 35px;
    }
    #contact-us .info {
        margin-left: 30px;
    }
}

@media (max-width: 480px) {
    #contact-us .col-1,
    #contact-us .col-2 {
        width: 100%;
        padding: 0px;
    }
    #contact-us .col-2 {
        margin-top: 30px;
    }
    #contact-us .col-1 {
        margin-top: 35px;
    }
    #contact-us .info {
        margin-left: 30px;
    }
}

#contact-us form {
    font-size: 0;
    width: 100%;
}

.contact-input {
    width: 100%;
    height: 46px;
    border: 1px solid;
    border-color: rgb(218, 225, 227);
    border-radius: 5px;
    font-weight: 400;
    margin: 10px 0px;
    padding-left: 10px;
    font-size: 16px;
}

.contact-input:focus,
.contact-input:hover {
    border-color: var(--app-button-hover-text-color);
}

.send-btn {
    width: 170px;
    height: 50px;
    text-align: center;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.2px;
    color: var(--app-button-text-color);
    background-color: var(--app-button-background-color);
    box-shadow: 0 0.5rem 1.125rem -0.5rem rgb(99 102 241 / 90%);
    border: 2px solid;
    border-color: var(--app-button-background-color);
    margin-top: 20px;
    margin-bottom: 20px;
    transition: all 0.25s ease-in-out;
}

.send-btn:hover {
    color: var(--app-button-hover-text-color);
    background-color: var(--app-button-hover-background-color);
}


/* ------------------------------- */


/* Introduction                    */


/* ------------------------------- */

.intros {
    background-color: var(--app-header-background-color);
    padding: 50px 0;
}

.rows {
    display: flex;
    flex-wrap: wrap;
    padding: 2em 1em;
    text-align: center;
    width: 100%;
}

.columns {
    width: 100%;
    padding: 0.5em 0;
}

.intros h1 {
    width: 100%;
    text-align: center;
    font-size: 30px;
    color: var(--app-title-color);
}

.card {
    height: 60vh;
    box-shadow: 0 0 2.4em rgba(25, 0, 58, 0.1);
    padding: 3.5em 1em;
    border-radius: 0.6em;
    color: var(--app-body-text-color);
    cursor: pointer;
    transition: 0.3s;
    background-color: #ffffff;
}

.card .img-container {
    width: 8em;
    height: 8em;
    background-color: var(--app-button-background-color);
    padding: 0.5em;
    border-radius: 50%;
    margin: 0 auto 2em auto;
}

.card img {
    width: 7em;
    height: 7em;
    border-radius: 50%;
    margin: 0 auto 2em auto;
}

.card h3 {
    font-weight: 500;
}

.card p {
    font-weight: 300;
    text-transform: uppercase;
    margin: 0.5em 0 2em 0;
    letter-spacing: 2px;
}

.intros.icons {
    height: 60px;
    width: 180px;
    margin: auto;
    display: flex;
    justify-content: center;
}

.card a {
    text-decoration: none;
    color: inherit;
    font-size: 1.4em;
}

.card:hover {
    background: linear-gradient(#33354d, #6366f1);
    color: #ffffff;
}

@media screen and (min-width: 768px) {
    .intros {
        padding: 1em 7em;
    }
    .send-btn {
        margin-top: 15px;
        margin-bottom: 15px;
    }
}

@media screen and (min-width: 992px) {
    .intros {
        padding: 1em;
    }
    .card {
        padding: 5em 1em;
    }
    .columns {
        flex: 0 0 33.33%;
        max-width: 33.33%;
        padding: 0 1em;
    }
    .send-btn {
        margin-top: 15px;
        margin-bottom: 15px;
    }
}


/* ------------------------------- */


/* FOOTER                           */


/* ------------------------------- */

footer {
    width: 100%;
    background-color: var(--app-footer-background-color);
    color: var(--app-footer-text-color);
    padding: 50px 0px;
}

footer .flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

footer .title {
    line-height: 50px;
    display: flex;
}

footer .title h1 {
    margin-left: 10px;
    font-size: 22px;
    color: var(--app-footer-text-color);
    display: flex;
}

footer a {
    text-decoration: none;
    color: var(--app-footer-text-color);
    line-height: 40px;
}

footer a:hover {
    color: var(--app-button-hover-text-color);
}

footer .row {
    display: flex;
    flex-wrap: wrap;
    gap: 0px;
}

footer .col {
    width: calc(33% - 0px);
}

footer .copy p {
    font-size: 16px;
    font-weight: 400;
    text-align: end;
}

@media (max-width:768px) {
    footer .col {
        width: 100%;
        padding: 0px;
    }
    footer .col~.col {
        margin-top: 25px;
    }
}

@media (max-width: 480px) {
    footer .col {
        width: 100%;
        padding: 0px;
    }
    footer .col~.col {
        margin-top: 25px;
    }
}
/* Hospital Software Styles */
.hospital-software {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.software-intro {
    text-align: center;
    margin-bottom: 60px;
}

.software-intro h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.software-intro p {
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card i {
    font-size: 2.5rem;
    color: #3498db;
    margin-bottom: 20px;
}

.feature-card h3 {
    color: #2c3e50;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.feature-card ul {
    list-style: none;
    padding: 0;
}

.feature-card ul li {
    color: #666;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.feature-card ul li::before {
    content: "â€¢";
    color: #3498db;
    position: absolute;
    left: 0;
}

.cta-section {
    text-align: center;
    padding: 60px 0;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.cta-section h3 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.cta-section p {
    color: #666;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background-color: #3498db;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #2980b9;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hospital-software {
        padding: 40px 0;
    }

    .software-intro h2 {
        font-size: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-card {
        padding: 20px;
    }

    .cta-section {
        padding: 40px 20px;
    }
}
/* Animation Keyframes */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { 
        transform: translateY(30px);
        opacity: 0;
    }
    to { 
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Animation Classes */
.animate-fade-in {
    animation: fadeIn 1s ease-out forwards;
}

.animate-slide-up {
    opacity: 0;
    animation: slideUp 0.5s ease-out forwards;
}

.pulse {
    animation: pulse 2s infinite;
}

/* Feature Cards Animation Delays */
.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }
.feature-card:nth-child(5) { animation-delay: 0.5s; }
.feature-card:nth-child(6) { animation-delay: 0.6s; }
.feature-card:nth-child(7) { animation-delay: 0.7s; }
.feature-card:nth-child(8) { animation-delay: 0.8s; }

/* Enhanced Feature Card Styles */
.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-card i {
    font-size: 2.5rem;
    color: #3498db;
    margin-bottom: 1rem;
}

/* CTA Button Animation */
.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: #3498db;
    color: white;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.cta-button i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.cta-button:hover i {
    transform: translateX(5px);
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}
/* Add after existing hospital-software styles */
.hospital-software {
    background: linear-gradient(rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.95)),
                url('../img/hospital-bg.jpg') center/cover fixed;
    position: relative;
    overflow: hidden;
}

.software-intro {
    position: relative;
}

.software-intro::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('../img/wave-pattern.svg') repeat-x;
    opacity: 0.1;
    animation: waveMove 20s linear infinite;
}

.feature-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    opacity: 0.1;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.feature-card:nth-child(1)::before {
    background-image: url('../img/patient-care.jpg');
}

.feature-card:nth-child(2)::before {
    background-image: url('../img/doctor-staff.jpg');
}

.feature-card:nth-child(3)::before {
    background-image: url('../img/billing.jpg');
}

.feature-card:nth-child(4)::before {
    background-image: url('../img/pharmacy.jpg');
}

.feature-card:hover::before {
    opacity: 0.2;
}

/* Floating Animation for Icons */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.feature-card i {
    animation: float 3s ease-in-out infinite;
}

/* Wave Animation */
@keyframes waveMove {
    0% { background-position: 0 0; }
    100% { background-position: 100% 0; }
}

/* Medical Cross Animation */
.medical-cross {
    position: absolute;
    width: 30px;
    height: 30px;
    background: rgba(99, 102, 241, 0.1);
    transform: rotate(45deg);
    animation: rotateCross 10s linear infinite;
}

@keyframes rotateCross {
    0% { transform: rotate(45deg) scale(1); }
    50% { transform: rotate(225deg) scale(1.2); }
    100% { transform: rotate(405deg) scale(1); }
}
/* Hero Banner Styles */
.hero-banner {
    padding: 60px 0;
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9));
    margin: 40px 0;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.software-preview {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.overlay-highlights {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.highlight-point {
    background: white;
    padding: 12px 25px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s ease;
}

.highlight-point:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.highlight-point i {
    color: #3498db;
    font-size: 1.2em;
}

.highlight-point span {
    color: #2c3e50;
    font-weight: 500;
}

/* ... existing code ... */

.floating-image {
    width: 65%;  /* Reduced from 85% */
    max-width: 800px;  /* Reduced from 1000px */
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
    animation: floatAnimation 3s ease-in-out infinite;
    margin: 0 auto;
    display: block;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    /* ... other styles ... */
    .floating-image {
        width: 85%;  /* Reduced from 95% */
    }
}

/* ... existing code ... */

@keyframes floatAnimation {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-banner {
        padding: 30px 15px;
        margin: 20px 0;
    }

    .highlight-point {
        padding: 10px 20px;
        font-size: 0.9em;
    }

    .floating-image {
        width: 95%;
    }

    .overlay-highlights {
        gap: 15px;
        margin-bottom: 30px;
    }
}
.hero-banner {
    padding: 60px 0;
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9));
    margin: 40px 0;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* ... existing code ... */

.floating-image {
    width: 65%;
    max-width: 800px;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
    animation: floatAnimation 3s ease-in-out infinite;
    margin-bottom: 25px;
    display: block;
}

.demo-button {
    display: inline-block;
    padding: 12px 30px;
    background: #3498db;
    color: white;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
    margin-top: 10px;
}

.demo-button:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}

.demo-button i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.demo-button:hover i {
    transform: translateX(5px);
}
.software-preview {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.software-preview {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.floating-image {
    width: 65%;
    max-width: 800px;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
    animation: floatAnimation 3s ease-in-out infinite;
    margin: 0;
    display: block;
}

.demo-button-container {
    width: 100%;
    text-align: center;
    margin-top: 20px;
}

.demo-button {
    display: inline-block;
    padding: 12px 30px;
    background: #3498db;
    color: white;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}
.software-preview {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.floating-image {
    width: 65%;
    max-width: 800px;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
    animation: floatAnimation 3s ease-in-out infinite;
    margin-bottom: 30px;
    display: block;
}

.button-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 10px;
}

.demo-button, .quote-button {
    display: inline-block;
    padding: 12px 30px;
    color: white;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.demo-button {
    background: #3498db;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.quote-button {
    background: #2ecc71;
    box-shadow: 0 4px 15px rgba(46, 204, 113, 0.3);
}

.demo-button:hover, .quote-button:hover {
    transform: translateY(-2px);
}

.demo-button:hover {
    background: #2980b9;
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}

.quote-button:hover {
    background: #27ae60;
    box-shadow: 0 6px 20px rgba(46, 204, 113, 0.4);
}
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.modal-content {
    position: relative;
    background: white;
    margin: 15% auto;
    padding: 30px;
    width: 90%;
    max-width: 500px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.close {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 28px;
    cursor: pointer;
    color: #666;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #2c3e50;
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
}

.submit-button {
    background: #3498db;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-button:hover {
    background: #2980b9;
    transform: translateY(-2px);
}
header {
    background: linear-gradient(135deg, #1a237e, #0d47a1);
    /* ... rest of header styles ... */
}

footer {
    background: linear-gradient(135deg, #1a237e, #0d47a1);
    color: #ffffff;
    /* ... rest of footer styles ... */
}

/* Update header text color for better visibility */
header .title h1,
header nav ul li a {
    color: #ffffff;
}

/* Update footer text colors */
footer a,
footer h3,
footer p {
    color: #ffffff;
}

footer a:hover {
    color: #689fcb;
}
/* Add or update these styles */
.highlight-point {
    font-size: 0.9rem;
    margin: 8px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.highlight-point i {
    font-size: 1rem;
    color: #4CAF50;
}

.highlight-point span {
    font-weight: 500;
}

/* Billing Software Page Specific Styles */
.billing-software {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.software-intro {
    text-align: center;
    margin-bottom: 60px;
}

.software-intro h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.software-intro p {
    font-size: 1.2rem;
    color: #6c757d;
    line-height: 1.6;
}

.hero-banner {
    position: relative;
    margin-bottom: 80px;
}

.software-preview {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 40px;
}

.overlay-highlights {
    flex: 1;
}

.highlight-point {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.highlight-point i {
    color: #28a745;
    font-size: 1.2rem;
}

.floating-image {
    max-width: 50%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    animation: float 3s ease-in-out infinite;
}

.demo-button-container {
    margin-top: 30px;
    display: flex;
    gap: 20px;
}

.demo-button, .quote-button {
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.demo-button {
    background: #007bff;
    color: #fff;
    border: none;
    cursor: pointer;
}

.quote-button {
    background: #25d366;
    color: #fff;
    text-decoration: none;
}

.demo-button:hover, .quote-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.features-grid {
    margin-bottom: 80px;
}

.row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.feature-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.feature-card i {
    font-size: 2rem;
    color: #007bff;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.feature-card ul {
    list-style: none;
    padding: 0;
}

.feature-card ul li {
    color: #6c757d;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.feature-card ul li::before {
    content: "â€¢";
    color: #007bff;
    font-weight: bold;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
}

.modal-content {
    position: relative;
    background: #fff;
    max-width: 500px;
    margin: 50px auto;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 1.5rem;
    cursor: pointer;
    color: #6c757d;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #2c3e50;
    font-weight: 500;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    font-size: 1rem;
}

.submit-button {
    width: 100%;
    padding: 12px;
    background: #007bff;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background: #0056b3;
}

/* Animations */
@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .software-preview {
        flex-direction: column;
        text-align: center;
    }

    .floating-image {
        max-width: 100%;
    }

    .demo-button-container {
        flex-direction: column;
    }

    .row {
        grid-template-columns: 1fr;
    }
}
.demo-button-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.demo-button,
.quote-button {
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.demo-button {
    background: #007bff;
    color: white;
    border: none;
    cursor: pointer;
}

.quote-button {
    background: #25d366;
    color: white;
}

.demo-button:hover,
.quote-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.demo-button i,
.quote-button i {
    font-size: 1.2rem;
}

footer {
    background: linear-gradient(135deg, #1a237e, #0d47a1);
    color: #ffffff;
    padding: 50px 0;
}

footer .flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

footer .title {
    line-height: 50px;
    display: flex;
}

footer .title h1 {
    margin-left: 10px;
    font-size: 22px;
    color: #ffffff;
    display: flex;
}

footer a {
    text-decoration: none;
    color: #ffffff;
    line-height: 40px;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #89CFF0;
}

footer .row {
    display: flex;
    flex-wrap: wrap;
    gap: 0px;
}

footer .col {
    width: calc(33% - 0px);
}

footer .copy p {
    font-size: 16px;
    font-weight: 400;
    text-align: end;
    color: #ffffff;
}
.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}
.footer-section h3 {
    color: #007bff;
    margin: 15px 0;
}

.footer-section h4 {
    color: #f9f0f0;
    margin-bottom: 20px;
}

.footer-section p {
    color: #f9f0f0;
    margin: 10px 0;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin: 10px 0;
}

.footer-section ul li a {
    color: #f9f0f0;
        text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #007bff;
}
/* Contact Form Styles */
.contact-form {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.contact-input {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

textarea.contact-input {
    min-height: 120px;
    resize: vertical;
}

.send-btn {
    width: 100%;
    padding: 12px;
    background: #25d366;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.send-btn:hover {
    background: #128c7e;
    transform: translateY(-2px);
}

.send-btn i {
    font-size: 20px;
}

.invalid-feedback {
    color: #dc3545;
    font-size: 14px;
    margin-top: -15px;
    margin-bottom: 15px;
    display: none;
}
/* Features Grid Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 60px 0;
    margin: 0 auto;
    max-width: 1200px;
}

.feature-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.feature-card i {
    font-size: 2.5rem;
    color: #1a237e;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.feature-card h3 {
    color: #2c3e50;
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
    font-weight: 600;
}

.feature-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.feature-card ul li {
    color: #6c757d;
    margin: 12px 0;
    padding-left: 25px;
    position: relative;
    font-size: 1rem;
}

.feature-card ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #1a237e;
    font-weight: bold;
}

/* Animation Classes */
.animate-slide-up {
    opacity: 0;
    animation: slideUp 0.5s ease-out forwards;
}

.pulse {
    animation: pulse 2s infinite;
}

/* Animation Keyframes */
@keyframes slideUp {
    from { 
        transform: translateY(30px);
        opacity: 0;
    }
    to { 
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Feature Cards Animation Delays */
.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }
.feature-card:nth-child(5) { animation-delay: 0.5s; }
.feature-card:nth-child(6) { animation-delay: 0.6s; }

/* Responsive Design */
@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 40px 20px;
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        padding: 30px 15px;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .feature-card i {
        font-size: 2rem;
    }

    .feature-card h3 {
        font-size: 1.3rem;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .feature-card,
    .animate-slide-up,
    .pulse {
        animation: none;
        transition: none;
    }
}

footer {
    width: 100%;
    background-color: var(--app-footer-background-color);
    color: var(--app-footer-text-color);
    padding: 50px 0px;
}

footer .flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

footer .title {
    line-height: 50px;
    display: flex;
}

footer .title h1 {
    margin-left: 10px;
    font-size: 22px;
    color: var(--app-footer-text-color);
    display: flex;
}

footer a {
    text-decoration: none;
    color: var(--app-footer-text-color);
    line-height: 40px;
}

footer a:hover {
    color: var(--app-button-hover-text-color);
}

footer .row {
    display: flex;
    flex-wrap: wrap;
    gap: 0px;
}

footer .col {
    width: calc(33% - 0px);
}

footer .copy p {
    font-size: 16px;
    font-weight: 400;
    text-align: end;
}

@media (max-width:768px) {
    footer .col {
        width: 100%;
        padding: 0px;
    }
    footer .col~.col {
        margin-top: 25px;
    }
}

@media (max-width: 480px) {
    footer .col {
        width: 100%;
        padding: 0px;
    }
    footer .col~.col {
        margin-top: 25px;
    }
}
