﻿/* ---- GLOBAL ---- */
body {
    font-family: "Poppins", sans-serif;
    background: #f4f6fa;
    color: #333;
}

/* ---- NAVBAR BASE ---- */
.top-navbar {
    position: sticky;
    top: 0;
    z-index: 999;
    background: linear-gradient(90deg, #000,#0077b6,#649ecb);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 30px;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

/* Brand Section */


.brand-name {
    color: #fff;
    font-size: 1.4rem;
}

/* LINKS SECTION */
.sub-links {
    display: flex;
    align-items: center;
    gap: 35px;
    position: relative;
}






    /* ====== NAVBAR MENU ANIMATION ====== */
    .sub-links a {
        position: relative;
        color: white;
        text-decoration: none;
        font-weight: 500;
        margin: 0 15px;
        display: inline-block;
        transition: color 0.3s ease;
        /* Fade-up load animation */
        opacity: 0;
        transform: translateY(10px);
        animation: fadeUp 0.6s ease forwards;
        font-size:1.3rem;
    }

        /* Staggered animation timing for each menu item */
        .sub-links a:nth-child(1) {
            animation-delay: 0.2s;
        }

        .sub-links a:nth-child(2) {
            animation-delay: 0.4s;
        }

        .sub-links a:nth-child(3) {
            animation-delay: 0.6s;
        }

        /* Underline hover effect */
        .sub-links a::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -4px;
            width: 0;
            height: 2px;
            background: #00bfff;
            transition: width 0.3s ease;
        }

        .sub-links a:hover {
            color: #00bfff;
        }

            .sub-links a:hover::after {
                width: 100%;
            }

/* Keyframes for fade-up effect */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}



.search-input {
    width: 0;
    opacity: 0;
    border: none;
    border-radius: 20px;
    padding: 5px 10px;
    transition: all 0.3s ease;
    background: white;
    color: black;
    outline: none;
    font-size: 14px;
    margin-bottom:0.7rem;
}

    .search-input.show {
        width: 160px;
        opacity: 1;
    }

.right-section button {
    background-color: #4893c5;
    font-size:20px;
    color: #fff;
    cursor: pointer;
    transition: transform 0.3s, color 0.3s;
    border:none;
}


    .right-section button :hover {
        transform: scale(1.2);
        color: #caf0f8;
    }










/* DROPDOWN MENU */
.dropdown {
    position: relative;

}


.dropdown-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: 120%;
    left: 0;
    background: #ffffff;
    min-width: 180px;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    z-index: 999;
}

    .dropdown-content a {
        color: #0077b6;
        padding: 10px 15px;
        text-decoration: none;
        display: block;
        font-weight: 600;
        transition: background 0.3s;
        font-size:1rem;
    }

        .dropdown-content a:hover {
            background: #e0f7ff;
            color:#000;
        }

/* Hover (Desktop) */
.dropdown:hover .dropdown-content {
    max-height: 500px;
    opacity: 1;
    pointer-events: auto;
}


/* RIGHT SECTION */
.right-section {
    display: flex;
    align-items: center;
    gap: 18px;
}



.signin {
    color: #023e8a;
    background: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease-in-out;
}

    .signin:hover {
        background: #caf0f8;
    }

/* MOBILE TOGGLE BUTTON */
.menu-toggle {
    display: none;
    font-size: 26px;
    color: #fff;
    background: none;
    border: none;
    cursor: pointer;
    transition: transform 0.3s;
}

    .menu-toggle:hover {
        transform: rotate(90deg);
    }

/* ---- ANIMATIONS ---- */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ---- MOBILE VIEW ---- */
@media (max-width: 768px) {
    .sub-links,
    .right-section {
        display: none;
        flex-direction: column;
        width: 100%;
       gap:0;
        padding:5px 0 !important;
    }
    .top-navbar .right-section {
        padding:0 !important;
    }

    .menu-toggle {
        display: block;
    }

    .top-navbar.active {
        flex-direction: column;
        align-items: flex-start;
        padding: 15px 20px;
        background: linear-gradient(180deg, #0096c7, #48cae4);
    }

        .top-navbar.active .sub-links,
        .top-navbar.active .right-section {
            display: flex;
            flex-direction: column;
            width: 100%;
            animation: slideDown 0.4s ease forwards;
        }

            .top-navbar.active .sub-links a,
            .top-navbar.active .signin {
                width: 100%;
               padding: 5px 0;
                text-align: center;
            }

            .sub-links a{
                margin:0px;
                font-size:1.2rem;

            }

    /* Show dropdown on tap (mobile) */
    .dropdown-content {
        position: static;
        background: #fff;
        width: 100%;
        box-shadow: none;
        border-radius: 0;
       
    }

    .dropdown.active .dropdown-content {
        max-height: 300px;
        opacity: 1;
        pointer-events: auto;
    }

    .dropdown-content a {
        color: #0077b6;
        padding: 10px 0;
        text-align: center;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .app-brand .brand-name {
        white-space: nowrap !important;
        font-size:1.2rem;
    }
    .top-navbar{
        padding:10px;
    }
    .dropdown {
        text-align: center;
    }
    .app-brand {
        width: 100%;
    }
}




.app-brand {
    display: flex;
    align-items: center; /* Vertically center */
    justify-content:space-between; /* Horizontally center */
    height: 100%; /* Ensures it centers within navbar */
 
}

    .app-brand .logo {
        display: inline-block;
        vertical-align: middle;
    }

    .app-brand .brand-name {
        display: inline-block;
        vertical-align: middle;
        white-space: nowrap;
    }







/* --- FOOTER MAIN --- */
.footer {
   background: linear-gradient(320deg, #000,#0077b6,#649ecb);
    padding: 20px 0;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

/* --- TOP BAR --- */
.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 40px;
    
    flex-wrap: wrap;
}

.footer-email i {
    margin-right: 8px;
    color: #fff;
}

.footer-email a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}

    .footer-email a:hover {
        text-decoration: underline;
    }

/* --- SOCIAL ICONS --- */
.footer-social a {
    color: #fff;
    margin: 0 8px;
    font-size: 20px;
    transition: color 0.3s ease;
}

    .footer-social a:hover {
        color: #0dcaf0;
    }

/* --- SEARCH BAR --- */
.footer-search {
    margin: 25px auto;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 600px;
    background: #fff;
    border-radius: 5px;
    overflow: hidden;
}

    .footer-search input {
        width: 100%;
        padding: 12px 15px;
        border: none;
        outline: none;
        font-size: 15px;
        color: #333;
    }

    .footer-search button {
        background: #2b2b2b;
        color: #fff;
        border: none;
        padding: 12px 18px;
        cursor: pointer;
        transition: background 0.3s ease;
    }

        .footer-search button:hover {
            background: #444;
        }

/* --- LINKS --- */
.footer-links {
    margin: 15px 0;
    font-size: 15px;
    margin-top: 3rem;
}

    .footer-links a {
        color: #fff;
        text-decoration: none;
        margin: 0 5px;
    }

        .footer-links a:hover {
            color: #fff;
        }

    .footer-links span {
        color: #555;
    }

/* --- COPYRIGHT --- */
.footer-bottom p {
    color: #e7e3e3;
    font-size: 13px;
    margin-top: 15px;
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .footer-top {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    .footer{
        padding:20px 10px;
    }

    .footer-search {
        flex-direction: column;
    }

        .footer-search button {
            width: 100%;
            border-top: 1px solid #ddd;
        }

    .footer-links {
        padding: 0 15px;
    }
}


/*---------pms page-----------*/



body {
    
    overflow-x: hidden;
}

/* --- HERO SECTION --- */
.hero-section {
    position: relative;
    text-align: center;
   
   
}
.hero-content {
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
    height: 500px;
    background: linear-gradient(to right,#dfd8e6,#f9f2dc, #d6e6ff,#e4fad1, #f3f8ff,#b4e3ff,#f9dde2);
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 800;
    color: #000;
    line-height: 1.3;
    margin-bottom: 40px;
    margin-top:0;
    padding-top:3rem;
}

.trial-btn {
    background: #e61e26;
    color: #fff;
    border: none;
    padding: 15px 40px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .trial-btn:hover {
        background: #b90f17;
    }

/* --- IMAGE BELOW (Z-INDEX) --- */
.image-container {
    position: relative;
 margin-top:2rem;
    display: flex;
    justify-content: center;

}

.dashboard-img {
    width: 90%;
    max-width: 1150px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    z-index: 10;
    border:2px solid #2009de;
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 36px;
    }

    .trial-btn {
        padding: 12px 32px;
        font-size: 16px;
    }

    .dashboard-img {
        width: 95%;
    }
}

@media (max-width: 600px) {
    .hero-section {
      
    }

    .hero-content h1 {
        font-size: 28px;
        line-height: 1.4;
    }

    .trial-btn {
        padding: 10px 28px;
        font-size: 15px;
    }

    .dashboard-img {
        border-radius: 12px;
    }
}



/*----------Feature section----------*/

/* --- FEATURES SECTION --- */
.features-section {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(180deg, #f8fcff 0%, #edf5fb 100%);
    margin-top:50vh;
}

.intro-text {
    max-width: 900px;
    margin: 0 auto 60px;
    font-size: 18px;
    line-height: 1.7;
    color: #222;
}

/* --- GRID --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    justify-items: center;
}

.feature-item {
    text-align: center;
    transition: all 0.3s ease;
}

    .feature-item img {
        width: 80px;
        height: 80px;
        object-fit: contain;
        margin-bottom: 15px;
        transition: transform 0.3s ease;
    }



    .feature-item h4 {
        font-size: 16px;
        font-weight: 600;
        color: #111;
    }

    .feature-item:hover img {
        transform: scale(1.1);
    }

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .intro-text {
        font-size: 17px;
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-item img {
        width: 70px;
        height: 70px;
    }

    .intro-text {
        font-size: 16px;
    }
    .features-section {
        margin-top:0;
    }
}

@media (max-width: 500px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .feature-item img {
        width: 60px;
        height: 60px;
    }

    .feature-item h4 {
        font-size: 15px;
    }

    .intro-text {
        font-size: 15px;
        line-height: 1.6;
    }
}


/*--------onboarding---------*/

/* --- MAIN SECTION --- */
.onboarding-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px 7%;
    gap: 60px;
    flex-wrap: wrap;



    text-align: left;
    align-items: stretch;
}

/* --- LEFT TEXT SIDE --- */
.onboard-text {
    flex: 1;
    min-width: 300px;
}

    .onboard-text h2 {
        font-size: 40px;
        font-weight: 800;
        margin-bottom: 20px;
        color: #000;
    }

    .onboard-text p {
        font-size: 17px;
        line-height: 1.7;
        color: #333;
        max-width: 500px;
    }

/* --- RIGHT IMAGE SIDE --- */
.onboard-image-wrapper {
    position: relative;
    flex: 1;
    min-width: 320px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Gradient Animated Background */
.image-bg {
    position: absolute;
    width: 100%;
    height: 350px;
    border-radius: 30px;
    background: linear-gradient(135deg, #a9e4ff, #fbd5c9, #c8f6e2);
    background-size: 300% 300%;
    animation: gradientShift 8s ease infinite;
    z-index: 1;
    filter: blur(3px);
}

/* Image Styling */
.onboard-image {
    position: relative;
    z-index: 2;
    width: 88%;
    max-width: 500px;
    height: 290px;
    border-radius: 20px;
    border: 2px solid #ed0d0d;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

    .onboard-image:hover {
        transform: translateY(-6px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    }

/* --- ANIMATION --- */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* --- RESPONSIVE DESIGN FIXED --- */

@media (max-width: 992px) {
    .onboarding-section {
        flex-direction: column;
        text-align: center;
        padding: 60px 6%;
        gap: 40px;
    }

    .onboard-text {
        width: 100%;
    }

        .onboard-text h2 {
            font-size: 32px;
            line-height: 1.3;
        }

        .onboard-text p {
            margin: 0 auto;
            font-size: 16px;
            line-height: 1.6;
        }

    .onboard-image-wrapper {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        height: auto;
    }

    .image-bg {
        width: 90%;
        height: 260px;
        border-radius: 25px;
    }

    .onboard-image {
        width: 85%;
        height: auto;
        max-width: 400px;
    }
}

@media (max-width: 600px) {
    .onboarding-section {
        padding: 50px 5%;
        gap: 30px;
    }

    .onboard-text h2 {
        font-size: 26px;
        line-height: 1.3;
    }

    .onboard-text p {
        font-size: 15px;
        line-height: 1.6;
    }

    .image-bg {
        width: 100%;
        height: 220px;
        border-radius: 20px;
        margin-top:3rem;
    }

    .onboard-image {
        width: 90%;
        height: auto;
        border-radius: 15px;
    }
}

/*-----2 panels-----*/

.highlight-wrapper {
    display: flex;
    justify-content: center;
    align-items: stretch;
    padding: 40px;
    gap: 40px;
    flex-wrap: wrap;
}

/* ===============================
   PANEL SECTIONS
=============================== */
/* --- Overall Wrapper --- */
.highlight-wrapper {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 30px;
    padding: 60px 5%;
    flex-wrap: wrap;
}

/* --- Each Panel --- */
.highlight-section {
    flex: 1 1 48%;
    border-radius: 20px;
    padding: 50px 40px 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

/* Left Gradient */
.left-section {
    background: linear-gradient(180deg, #cbe4ff 0%, #f1eaff 100%);
}

/* Right Gradient */
.right-section {
/*    background: linear-gradient(180deg, #d7f3e4 0%, #f9e9d7 100%);*/
}

/* --- Text Content --- */
.highlight-text {
    text-align: left;
}

.highlight-title {
    font-size: 26px;
    font-weight: 700;
    color: #111;
    margin-bottom: 12px;
}

.highlight-desc {
    font-size: 15px;
    color: #333;
    line-height: 1.6;
    max-width: 95%;
}

/* --- Image Section --- */
.highlight-image {
    position: relative;
    z-index: 1;
    width: 100%;
    margin-top: auto;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

    .highlight-image img {
        width: 100%;
        height: auto;
        object-fit: contain;
        display: block;
        transform: translateY(20px);
        transition: transform 0.6s ease, filter 0.6s ease;
        filter: drop-shadow(0 8px 15px rgba(0,0,0,0.1));
    }

/* Hover Animation */
.highlight-section:hover .highlight-image img {
    transform: translateY(0);
}

/* --- Animations --- */
.animate-left {
    animation: slideInLeft 1s ease forwards;
}

.animate-right {
    animation: slideInRight 1s ease forwards;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* --- Responsive --- */
@media (max-width: 991px) {
    .highlight-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .highlight-section {
        flex: 1 1 100%;
        padding: 40px 30px;
    }

    .highlight-title {
        font-size: 22px;
    }
}




/* ===== Overall Wrapper ===== */
.feature-panels {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 30px;
    padding: 60px 5%;
    flex-wrap: nowrap;
}

/* ===== Each Panel ===== */
.feature-box {
    flex: 1;
    border-radius: 20px;
    padding: 50px 40px 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* Left Gradient */
.box-left {
    background: linear-gradient(180deg, #c6e0ff 0%, #f5dff2 100%);
}

/* Right Gradient */
.box-right {
    background: linear-gradient(180deg, #d5f4e2 0%, #f9e9d9 100%);
}

/* ===== Text Section ===== */
.feature-content {
    z-index: 2;
}

    .feature-content h2 {
        font-size: 26px;
        font-weight: 700;
        color: #0f0f0f;
        margin-bottom: 12px;
    }

    .feature-content p {
        font-size: 15px;
        line-height: 1.6;
        color: #333;
    }

/* ===== Image Section ===== */
.feature-image {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    width: 100%;

    margin-top: auto;
    position: relative;
    z-index: 1;
}

    .feature-image img {
        width: 100%;
        height: auto;
        display: block;
        object-fit: contain;
        border: 2px solid #07d1cc;
        border-radius: 5px;
        padding: 10px;
        filter: drop-shadow(0 8px 15px rgba(0, 0, 0, 0.1));
    }

/* Hover Animation */
.feature-box:hover .feature-image img {
    transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 991px) {
    .feature-panels {
        flex-direction: column;
        gap: 40px;
    }

    .feature-box {
        width: auto;
        padding: 40px 30px;
    }

    .feature-content h2 {
        font-size: 22px;
    }
}




/* ====== REFERRAL SECTION ====== */
.referral-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    padding: 60px 8%;
    padding-bottom: 5px;
    flex-wrap: wrap;
    background: linear-gradient(to right, #f5d6e0, #c3e6f5);
}

/* ====== LEFT DOCTOR IMAGE ====== */
.referral-image {
    flex: 1;
    min-width: 280px;
    text-align: center;
}

    .referral-image img {
        width: 380px;
        max-width: 100%;
        height: auto;
    }

/* ====== RIGHT CONTENT ====== */
.referral-content {
    flex: 1;
    min-width: 320px;
    text-align: center;
}

    .referral-content h2 {
        font-size: 1.8rem;
        font-weight: 700;
        color: #000;
        margin-bottom: 10px;
    }

    .referral-content p {
        font-size: 1rem;
        color: #333;
        max-width: 520px;
        margin: 0 auto 25px;
        line-height: 1.6;
    }

/* ====== WHITE IMAGE CARD ====== */
.referral-card {
    background: #fff;
    border: 2px solid #f2a6e0;
    border-radius: 12px;
    padding: 20px;
    max-width: 550px;
    margin: 0 auto;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .referral-card img {
        width: 100%;
        height: auto;
        display: block;
        border-radius: 8px;
        object-fit: contain;
    }

/* ====== RESPONSIVE DESIGN ====== */
@media (max-width: 768px) {
    .referral-section {
        flex-direction: column;
        padding: 20px 5%;
        text-align: center;
        gap: 40px;
    }

    .referral-image {
        order: 1;
    }

    .referral-content {
        order: 2;
        width: 100%;
    }

    .referral-card {
        width: 90%;
        max-width: 420px;
        margin: 20px auto 0;
        padding: 15px;
    }

        .referral-card img {
            border-radius: 10px;
            width: 100%;
            height: auto;
            object-fit: cover;
        }
}

@media (max-width: 480px) {
    .referral-content h2 {
        font-size: 1.4rem;
    }

    .referral-content p {
        font-size: 0.95rem;
        padding: 0 10px;
    }

    .referral-card {
        width: 100%;
        max-width: 360px;
        padding: 12px;
    }
}




/*--------consent-section--------*/
.consent-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    padding: 60px 8%;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
}

/* Left Text Content */
.consent-text {
    flex: 1;
    min-width: 280px;
}

    .consent-text h2 {
        font-size: 2.2rem;
        font-weight: 700;
        color: #000;
        margin-bottom: 15px;
        line-height: 1.3;
    }

    .consent-text p {
        font-size: 1rem;
        color: #333;
        max-width: 500px;
        line-height: 1.6;
    }

/* Right Image Wrapper with Gradient Background */
.consent-image-wrapper {
    position: relative;
    flex: 1;
    min-width: 320px;
    max-width: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Gradient background behind image */
.gradient-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f5d6e0, #c3e6f5);
    border-radius: 20px;
    z-index: 1;
    filter: drop-shadow(0 8px 15px rgba(0, 0, 0, 0.1));
}

/* Foreground Image */
.consent-image {
    position: relative;
    z-index: 2;
    width: 90%;
    height: auto;
    border:1px solid #ffa9ca  ;
}

    .consent-image img {
        width: 100%;
        height: auto;
        display: block;
        border-radius: 16px;
        object-fit: cover;
    }

/* Responsive Design */
@media (max-width: 768px) {
    .consent-section {
        flex-direction: column;
        text-align: center;
        gap: 40px;
        padding: 40px 6%;
    }

    .consent-image-wrapper {
        max-width: 400px;
        width: 100%;
        margin: 0 auto;
    }

    .consent-text h2 {
        font-size: 1.8rem;
    }

    .consent-text p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .consent-text h2 {
        font-size: 1.5rem;
    }

    .consent-text p {
        font-size: 0.9rem;
    }

    .gradient-bg {
        border-radius: 15px;
    }
}


/*----- emr-section ------*/
.emr-content {
    background: linear-gradient(90deg, #bff9f7 0%, #fde9da 100%);
    padding: 60px 5%;
    text-align: center;
    font-family: "Poppins", sans-serif;
    height: 240px;
}

/* ========== Header Text ========== */
.emr-content h2 {
    font-size: 1.9rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 15px;
}

.emr-content p {
    font-size: 0.95rem;
    color: #444;
    max-width: 700px;
    margin: 0 auto 60px;
    line-height: 1.6;
}

/* ========== Card Layout ========== */
.emr-card-container {
    background: linear-gradient(90deg, #bff9f7 0%, #fde9da 100%);
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 50px;
    flex-wrap: wrap;
    max-width: 1400px;
}

/* ===== Individual Card ===== */
.emr-card {
    background: #ffffff;
    border: 1px solid #c5f1f6;
    border-radius: 20px;
    width: 190px;
    height: 190px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 2px solid #c49eb8;
}

    .emr-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    }

/* ===== Wave-like height differences ===== */
.card-low {
    margin-bottom: 2.5rem;
}


.card-high {
    margin-bottom:2.5rem;
}

/* ===== Icon + Text ===== */
.emr-card img {
    width: 65px;
    height: 65px;
    margin-bottom: 15px;
}

.emr-card h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: #000;
    text-align: center;
    line-height: 1.3;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
    .emr-card-container {
        gap: 30px;
    }

    .emr-card {
        width: 170px;
        height: 170px;
    }

    .card-low, .card-mid, .card-high {
        margin-top: 0;
        margin-bottom:0;
    }
    .emr-section{
        height:auto;
    }
}


@media (max-width: 768px) {
    .emr-card-container {
        justify-content: center;
        padding-top:3rem;
    }

    .emr-card {
        width: 45%;
        height: 170px;
    }

    .card-low, .card-mid, .card-high {
        margin-top: 0;
    }
}

@media (max-width: 480px) {
    .emr-card-container {
        flex-direction: column;
        align-items: center;
    }

    .emr-card {
        margin-top:1rem;
        width: 85%;
        height: 160px;
    }
}




/*-------billing-section-------*/

.billing-section {
  background: #fff;
  padding: 100px 100px;
}

/* Align text & image properly */
    .billing-section .billing-text {
        padding-right: 40px;
    }

.billing-section h2 {
  font-size: 2.2rem;
  line-height: 1.3;
  color: #000;
}

.billing-section p {
  font-size: 1rem;
  color: #555;
  max-width: 430px;
}

/* ===== Gradient Image Container ===== */
    .billing-section .billing-graphic {
        background: linear-gradient(135deg, #ebe9a8 0%, #cdc7ed 100%);
        border-radius: 30px;
        width: 100%;
        max-width: 480px;
        height: 320px;
        margin-left: auto;
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: hidden;
       
    }

/* ===== Image Styling ===== */
    .billing-section .billing-image {
        width: 75%;
        height: auto;
        display: block;
        filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.1));
        transition: transform 0.4s ease;
        border: 1px solid #e509b9;
    }

        .billing-section .billing-image:hover {
            transform: translateY(-5px);
        }

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .billing-section {
    padding: 80px 0;
  }
    .billing-section .billing-text {
        padding-right: 0;
        text-align: center;
    }
    .billing-section .billing-graphic {
        margin: 40px auto 0;
        height: 280px;
    }
    .billing-section .billing-image {
        width: 80%;
    }
}

@media (max-width: 576px) {
    .billing-section .billing-graphic {
        height: 250px;
    }
    .billing-section .billing-image {
        width: 85%;
    }
}



/* ===== Analytics Section ===== */
.analytics-section {
    background: linear-gradient(90deg, #b8e8ff 0%, #ead6f9 100%);
    padding: 100px 5%;
    text-align: center;
}

/* ===== Title and Subtitle ===== */
.analytics-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 10px;
}

.analytics-subtitle {
    font-size: 1.05rem;
    color: #333;
    max-width: 700px;
    margin: 0 auto 60px auto;
    line-height: 1.6;
}

/* ===== Dashboard Image Container ===== */
.dashboard-box {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    display: inline-block;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    padding: 10px;
    max-width: 1000px;
    width: 100%;
    border: 2px solid #0a17d7;
}

/* ===== Dashboard Image ===== */
.dashboard-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    transition: transform 0.4s ease;
}

    .dashboard-image:hover {
        transform: translateY(-5px);
    }

/* ===== Responsive ===== */
@media (max-width: 992px) {
    .analytics-title {
        font-size: 1.9rem;
    }

    .analytics-subtitle {
        font-size: 1rem;
        margin-bottom: 40px;
    }

    .dashboard-box {
        max-width: 700px;
    }
}

@media (max-width: 768px) {
    .analytics-section {
        padding: 80px 6%;
    }

    .analytics-title {
        font-size: 1.7rem;
    }

    .dashboard-box {
        max-width: 100%;
    }
}





/* ===== CTA Section ===== */
.cta-section {
    background: #fff;
    text-align: center;
    padding: 80px 5%;
}

.cta-heading {
    font-size: 1.8rem;
    font-weight: 700;
    color: #000;
    line-height: 1.4;
    margin-bottom: 30px;
}

.cta-button {
    background-color: #e02424;
    color: #fff;
    border: none;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 6px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

    .cta-button:hover {
        background-color: #c71e1e;
        transform: translateY(-2px);
    }

/* ===== Responsive Design ===== */
@media (max-width: 992px) {
    .cta-heading {
        font-size: 1.6rem;
    }

    .cta-button {
        padding: 12px 26px;
    }
}

@media (max-width: 768px) {
    .cta-section {
        padding: 60px 8%;
    }

    .cta-heading {
        font-size: 1.4rem;
        line-height: 1.5;
    }

    .cta-button {
        width: auto;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .cta-heading {
        font-size: 1.2rem;
    }

    .cta-button {
        padding: 10px 22px;
        font-size: 0.85rem;
    }
}









/*-------diksha css------*/


/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: sans-serif;
}

.home-section1 {
    background: linear-gradient(135deg, #9be4f8, #b2f7dc);
    color: #111;
    text-align: center;
    padding: 70px 20px 150px 20px;
    overflow-x: hidden;
}

    /* Heading */
    .home-section1 h1 {
        font-size: clamp(1.8rem, 4vw, 2.8rem);
        font-weight: 800;
        line-height: 1.3;
        max-width: 900px;
        margin: 0 auto 40px;
        color: #0c243c;
    }

    /* Button */
    .home-section1 .cta-btn {
        display: inline-block;
        background: linear-gradient(90deg, #ef4b42, #ff705a);
        color: #fff;
        font-weight: 600;
        padding: 14px 38px;
        border-radius: 10px;
        text-decoration: none;
        transition: 0.3s ease;
        box-shadow: 0 4px 15px rgba(239, 75, 66, 0.4);
    }

        .home-section1 .cta-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 22px rgba(239, 75, 66, 0.6);
        }

    /* Grid */
    .home-section1 .features {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
        gap: 30px;
        max-width: 1200px;
        margin: 70px auto 0;
    }

    /* Card */
    .home-section1 .feature-card {
        background: linear-gradient(145deg, #9de6f4, #c2f4fb);
        border-radius: 18px;
        padding: 20px 25px;
        box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
        transition: all 0.5s ease;
        position: relative;
        overflow: hidden;
        border: 0px solid transparent;
        background-clip: padding-box;
    }

        .home-section1 .feature-card::before {
            content: "";
            position: absolute;
            inset: 0;
            border-radius: 18px;
            padding: 2px;
            background: linear-gradient(135deg, rgba(255,255,255,0.5), rgba(0,0,0,0.1));
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            pointer-events: none;
        }

        .home-section1 .feature-card:hover {
            transform: translateY(-10px) scale(1.05);
            box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
            /*border-image: linear-gradient(135deg, #00c6ff, #0072ff) 1;*/
        }

    /* Icon Circle */
    .home-section1 .icon {
        display: inline-flex;
        justify-content: center;
        align-items: center;
        font-size: 1.7rem;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        margin-bottom: 18px;
        color: #fff;
        transition: all 0.5s ease;
        box-shadow: 0 6px 15px rgba(0,0,0,0.15);
        position: relative;
        z-index: 1;
    }

    /* Different Gradient per Icon */
    .home-section1 .feature-card:nth-child(1) .icon {
        background: linear-gradient(135deg, #4facfe, #00f2fe);
    }

    .home-section1 .feature-card:nth-child(2) .icon {
        background: linear-gradient(135deg, #43e97b, #38f9d7);
    }

    .home-section1 .feature-card:nth-child(3) .icon {
        background: linear-gradient(135deg, #fa709a, #fee140);
    }

    .home-section1 .feature-card:nth-child(4) .icon {
        background: linear-gradient(135deg, #667eea, #764ba2);
    }

    .home-section1 .feature-card:nth-child(5) .icon {
        background: linear-gradient(135deg, #ff758c, #ff7eb3);
    }

    .home-section1 .feature-card:nth-child(6) .icon {
        background: linear-gradient(135deg, #42e695, #3bb2b8);
    }

    .home-section1 .feature-card:nth-child(7) .icon {
        background: linear-gradient(135deg, #f093fb, #f5576c);
    }

    .home-section1 .feature-card:nth-child(8) .icon {
        background: linear-gradient(135deg, #89f7fe, #66a6ff);
    }

    /* Hover Effect for Icon */
    .home-section1 .feature-card:hover .icon {
        transform: rotate(15deg) scale(1.2);
        box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    }

    /* Title */
    .home-section1 .feature-title {
        font-size: 1.15rem;
        font-weight: 600;
        color: #0c243c;
        margin-top: 10px;
    }

/* Entry Animation */
@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.home-section1 .feature-card {
    animation: fadeUp 0.8s ease forwards;
}

    .home-section1 .feature-card:nth-child(1) {
        animation-delay: 0.1s;
    }

    .home-section1 .feature-card:nth-child(2) {
        animation-delay: 0.2s;
    }

    .home-section1 .feature-card:nth-child(3) {
        animation-delay: 0.3s;
    }

    .home-section1 .feature-card:nth-child(4) {
        animation-delay: 0.4s;
    }

    .home-section1 .feature-card:nth-child(5) {
        animation-delay: 0.5s;
    }

    .home-section1 .feature-card:nth-child(6) {
        animation-delay: 0.6s;
    }

    .home-section1 .feature-card:nth-child(7) {
        animation-delay: 0.7s;
    }

    .home-section1 .feature-card:nth-child(8) {
        animation-delay: 0.8s;
    }



/* Responsive */
@media (max-width: 768px) {
    .home-section1 {
        padding: 50px 15px;
    }

        .home-section1 .icon {
            width: 65px;
            height: 65px;
            font-size: 2rem;
        }

        .home-section1 .feature-card {
            padding: 30px 20px;
        }

        .home-section1 .features {
            display: none;
        }

        .home-section1 .cta-btn {
            margin-bottom: 14rem;
        }
}



.Healthcare {
    width: 90%;
    height: auto;
    place-self: center;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.03);
    background-image: url('../images/img2-2.png');
    background-repeat: no-repeat;
    background-size: contain;
    border: 1px solid #dce6ec;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 25px;
    transform: translateY(-50%);
}

    .Healthcare .div1 {
        width: 50%;
        height: 100%;
        padding: 30px 0 30px 30px;
    }

    .Healthcare h2 {
        font-size: 35px;
        font-weight: bold;
    }

    .Healthcare .div2 {
        width: 50%;
        height: auto;
        padding: 30px 0 30px 10px;
    }

    .Healthcare p {
        font-size: 16.5px;
        line-height: 30px;
        margin-top: 1rem;
    }

@media (max-width:768px) {
    .Healthcare {
        display: block;
        background-size: cover;
        padding: 30px;
        margin-left: 1.2rem;
    }

        .Healthcare .div1 {
            width: 100%;
            padding: 0;
        }

        .Healthcare .div2 {
            width: 100%;
            padding: 0;
        }

        .Healthcare h2 {
            font-size: 28px;
        }
}

@media (max-width: 578px) {
    .Healthcare {
        padding: 25px 15px;

    }

        .Healthcare p {
            text-align: center;
            font-size: 15.5px;
        }

        .Healthcare h2 {
            text-align: center;
            font-size: 28px;
        }

        .Healthcare .div1 {
            padding-bottom: 0
        }
}


/* home section 2 */

.home-section2 {
    width: 100%;
    height: auto;
    padding: 4rem 7rem;
    text-align: center;
    margin-top:-6rem;
}

    .home-section2 h2 {
        font-family: var(--zf-primary-extrabold), sans-serif;
        font-size: 40px;
        font-weight: bold;
        line-height: 1.1;
        letter-spacing: -0.007em;
        color: #000;
    }

    .home-section2 p {
        font-size: 18px;
        line-height: 1.6;
        color: #000;
        max-width: 860px;
        margin: 24px auto 0;
    }


    .home-section2 .crm-container {
        display: flex;
        gap: 25px;
        padding: 40px;
    }



    .home-section2 .crm-container {
        display: flex;
        align-items: flex-start;
        gap: 40px;
        position: relative;
    }

    /* Sidebar Styling */
    .home-section2 .crm-container {
        display: flex;
        align-items: flex-start;
        gap: 40px;
    }

        /* Sidebar */
        .home-section2 .crm-container .sidebar {
            width: 250px;
            position: sticky;
            top: 100px;
            align-self: flex-start;
            padding: 0;
            background: none;
            border-radius: 10px;
            margin-top: 5rem;
        }

            .home-section2 .crm-container .sidebar ul {
                list-style: none;
                margin: 0;
                padding: 0;
            }

            .home-section2 .crm-container .sidebar li {
                margin-bottom: 10px;
            }

            .home-section2 .crm-container .sidebar a {
                display: block;
                padding: 12px 18px;
                border-radius: 8px;
                color: #0c243c;
                font-weight: 500;
                text-decoration: none;
                border: 1px solid #e6ecf2;
                transition: all 0.3s ease;
                background: #fff;
                box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
            }

                .home-section2 .crm-container .sidebar a:hover {
                    background: #f1f8ff;
                    transform: translateX(4px);
                }

                .home-section2 .crm-container .sidebar a.active {
                    background: linear-gradient(90deg, #007bff, #00b8ff);
                    color: #fff;
                    box-shadow: 0 4px 12px rgba(0, 140, 255, 0.25);
                    border: none;
                    transform: translateX(4px);
                }

        /* Content Area */
        .home-section2 .crm-container .content-area {
            flex: 1;
            min-width: 0;
        }

@media (max-width: 767.98px) {
    .home-section2 .crm-container .sidebar {
        display: none !important;
    }
}


/* Smooth scroll */
html {
    scroll-behavior: smooth;
}



/* Content Section */
.home-section2 .crm-container .content-area {
    flex: 1;
}

.home-section2 .crm-container .section {
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.05);
    margin-bottom: 60px;
}

    .home-section2 .crm-container .section h2 {
        font-weight: 700;
        color: #0c243c;
        margin-bottom: 25px;
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 32px;
    }

        .home-section2 .crm-container .section h2 i {
            color: #008cff;
        }

    .home-section2 .crm-container .section p {
        color: #333;
        line-height: 1.6;
    }

.home-section2 .crm-container .check-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 12px;
    margin-bottom: 30px;
}

    .home-section2 .crm-container .check-list p {
        position: relative;
        text-align: justify;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }

    .home-section2 .crm-container .check-list div {
        padding-left: 28px;
    }
    /*.home-section2 .crm-container .check-list p::before {
                content: "✔";
                color: #1cc88a;
                font-weight: bold;
                position: absolute;
                left: 0;
            }*/
    .home-section2 .crm-container .check-list i {
        font-size: 22px;
        margin-right: 10px;
        color: green;
    }

.home-section2 .crm-container .img-box img {
    max-width: 100%;
    border-radius: 12px;
    margin-top: 20px;
}

.home-section2 .crm-container .section-icon {
    width: 48px;
    height: 48px;
    object-fit: contain;
    margin-right: 10px;
}

.img-box {
    width: 100%;
    height: 15rem;
    background-image: url('../images/section1img.png');
    background-size: contain;
    background-position: left;
    background-repeat: no-repeat;
}


.img-box1 {
    position: relative;
    width: 100%;
    height: 17rem;
    background-image: url('../images/appointment-removebg.png');
    background-size: contain;
    background-position: left;
    background-repeat: no-repeat;
    opacity: 1;
}

#appointment img {
    width: 60%;
    height: auto;
    position: absolute;
    bottom: 10px;
    right: 10px;
    object-fit: contain;
}


/*.img-box1 {
    width: 90%;
    height: 17rem;
    background-image: url('../images/appointment-removebg.png');
    background-size: cover;
    background-position: left;
    background-repeat: no-repeat;
    opacity: 1;
}

#appointment img {
    width: 60%;
    height: auto;
    position: absolute;
    bottom: 10px;
    left: 10px;
    object-fit: contain;
    transform: translateX(-15%);
}*/
.img-box2 {
    width: 90%;
    height: 18rem;
    background-image: url('../images/communication.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    place-self: center;
}

.img-box3 {
    width: 100%;
    height: 20rem;
    background-image: url('../images/followup.png');
    background-size: cover;
    background-position: right;
    background-repeat: no-repeat;
}

#telephony img {
    width: 70%;
    height: auto;
    object-fit: contain;
}

.img-box4 {
    position: relative;
    width: 100%;
    height: 20rem;
    background-image: url('../images/telephony.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

    .img-box4 img {
        position: absolute;
        bottom: 10px;
        left: 10px;
        width: 70%;
        height: auto;
        object-fit: contain;
    }

.img-box5 {
    width: 100%;
    height: 20rem;
    background-image: url('../images/HMS.jpg');
    background-size: cover;
    background-position: right;
    background-repeat: no-repeat;
}

#ehr p {
    text-align: justify;
    margin-bottom: 2rem;
}

.img-box6 {
    width: 100%;
    height: 20rem;
}

/*#signature .check-list img{
    width: 100%;
    height: auto;
}*/


@media (max-width: 992px) {
    .home-section2 .crm-container {
        flex-direction: column;
        padding: 20px;
    }

        .home-section2 .crm-container .sidebar {
            position: relative;
            top: auto;
            width: 100%;
        }
}

@media (max-width:768px) {
    .home-section2 {
        padding: 0 0 5rem 0;
        margin-top:-12rem;
    }

        .home-section2 p {
            text-align: left;
        }

    /*.home-section2 .crm-container {
        padding: 20px 0;
    }*/

    #signature .check-list img {
        width: 100%;
        height: auto;
    }

    .home-section2 .crm-container .section {
        padding: 20px;
    }

    .home-section2 .crm-container .check-list div {
        padding-left: 0;
    }

    .home-section2 .crm-container .content-area {
        width: 100%;
    }

    .img-box4 {
        width: 100%;
        height: 15rem;
    }
}


@media (max-width: 550px) {
    .home-section2 .crm-container .check-list {
        grid-template-columns: 1fr; /* single column layout */
    }

        .home-section2 .crm-container .check-list p {
            text-align: left; /* better readability on small screens */
            font-size: 0.95rem;
            line-height: 1.6;
        }

    .home-section2 .crm-container .section {
        padding: 25px 20px;
    }

        .home-section2 .crm-container .section h2 {
            font-size: 22px;
        }
}
.home-section2 .last-sec {
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: auto;
    text-align: center;
    margin: 0;
    padding: 2rem;
}

    .home-section2 .last-sec h1 {
        font-size: clamp(1.4rem, 4vw, 2.5rem);
        font-weight: 700;
        color: #222;
        line-height: 1.4;
        margin-bottom: 2rem;
        letter-spacing: 0.3px;
        animation: fadeInUp 1s ease;
    }

    .home-section2 .last-sec .btn {
        padding: clamp(0.7rem, 2vw, 1rem) clamp(1.5rem, 4vw, 2.4rem);
        font-size: clamp(0.9rem, 2vw, 1.1rem);
        font-weight: 600;
        border: none;
        border-radius: 50px;
        background: linear-gradient(135deg, #ff4e4e, #ff7373);
        color: #fff;
        cursor: pointer;
        transition: all 0.3s ease;
        animation: fadeIn 1.5s ease;
    }

        .home-section2 .last-sec .btn:hover {
            transform: translateY(-3px);
            background: linear-gradient(135deg, #ff6a6a, #ff4e4e);
            box-shadow: 0 4px 10px rgba(255, 78, 78, 0.3);
        }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .home-section2 .last-sec h1 {
        line-height: 1.5;
        margin-bottom: 1.5rem;
    }

    .home-section2 .last-sec .btn {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .home-section2 .last-sec {
        padding: 2rem;
    }

        .home-section2 .last-sec h1 {
            font-size: 1.3rem;
        }

        .home-section2 .last-sec .btn {
            width: 100%;
            max-width: 250px;
        }
}


/* GET input TOUCH STYLE */


.get {
    background: linear-gradient(to bottom, #d6f5da 50%, #ffffff 50%);
    overflow-x: hidden;
}

/* MAIN WRAPPER */
.get-in-touch {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: stretch;
    padding: 60px 0;
}

    .get-in-touch .container-fluid {
        display: flex;
        flex-wrap: wrap;
        width: 90%;
        max-width: 1200px;
        min-height: 100vh;
        border-radius: 10px;
        animation: fadeIn 1.2s ease-in-out;
        overflow: hidden;
        background: transparent;
    }

        /* LEFT SECTION */
        .get-in-touch .container-fluid .left-section {
            flex: 1;
            background: transparent;
            padding: 70px 60px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            animation: slideLeft 1s ease;
        }

            .get-in-touch .container-fluid .left-section h1 {
                font-size: 2.5rem;
                font-weight: 700;
                margin-bottom: 15px;
                color: #111;
                line-height: 1.3;
                animation: fadeUp 1s ease forwards 0.3s;
            }

            .get-in-touch .container-fluid .left-section .subtitle {
                font-size: 1.2rem;
                margin-bottom: 35px;
                color: #444;
                animation: fadeUp 1s ease forwards 0.6s;
            }

        .get-in-touch .container-fluid .img-wrapper {
            border: 2px solid #a1dba9;
            display: inline-block;
            padding: 8px;
            margin-bottom: 30px;
            border-radius: 6px;
            background-color: #fff;
            box-shadow: 0 4px 8px rgba(0,0,0,0.08);
            transition: all 0.4s ease;
            animation: fadeUp 1s ease forwards 0.9s;
        }

            .get-in-touch .container-fluid .img-wrapper:hover {
                transform: scale(1.05);
                box-shadow: 0 8px 16px rgba(0,0,0,0.15);
            }

        .get-in-touch .container-fluid .left-section img {
            width: 100%;
            height: auto;
            border-radius: 6px;
            display: block;
        }

        .get-in-touch .container-fluid .left-section .desc {
            font-size: 1rem;
            line-height: 1.7;
            color: #222;
            max-width: 480px;
            animation: fadeUp 1s ease forwards 1.2s;
        }

        /* RIGHT SECTION */
        .get-in-touch .container-fluid .right-section {
            flex: 1;
            background-color: #ffffff;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 60px 40px;
            animation: slideRight 1s ease;
        }

        .get-in-touch .container-fluid .form-box {
            width: 100%;
            max-width: 480px;
            background: #fff;
            box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
            border-radius: 10px;
            padding: 40px;
            animation: fadeUp 1s ease forwards 1.5s;
        }

            .get-in-touch .container-fluid .form-box h2 {
                font-size: 1.4rem;
                font-weight: 600;
                margin-bottom: 25px;
                color: #111;
                text-align: center;
            }

        .get-in-touch .container-fluid .form-group {
            margin-bottom: 18px;
        }

            .get-in-touch .container-fluid .form-group label {
                display: block;
                font-weight: 600;
                font-size: 0.95rem;
                margin-bottom: 6px;
            }

            .get-in-touch .container-fluid .form-group input,
            .get-in-touch .container-fluid .form-group select,
            .get-in-touch .container-fluid .form-group textarea {
                width: 100%;
                padding: 10px 12px;
                border: 1px solid #ccc;
                border-radius: 5px;
                font-size: 0.95rem;
                transition: all 0.3s ease;
            }

                .get-in-touch .container-fluid .form-group input:focus,
                .get-in-touch .container-fluid .form-group select:focus,
                .get-in-touch .container-fluid .form-group textarea:focus {
                    outline: none;
                    border-color: #4caf50;
                    box-shadow: 0 0 6px rgba(76, 175, 80, 0.3);
                }

            .get-in-touch .container-fluid .form-group textarea {
                resize: vertical;
                height: 90px;
            }

        .get-in-touch .container-fluid .location {
            font-size: 0.85rem;
            color: #555;
            margin-bottom: 15px;
        }

            .get-in-touch .container-fluid .location a {
                color: #007bff;
                text-decoration: none;
            }

        .get-in-touch .container-fluid .captcha-box {
            display: flex;
            align-items: center;
            gap: 10px;
        }

            .get-in-touch .container-fluid .captcha-box img {
                height: 40px;
                border: 1px solid #ccc;
                border-radius: 4px;
            }

        .get-in-touch .container-fluid .note {
            font-size: 0.8rem;
            color: #555;
            line-height: 1.4;
            margin-top: 10px;
        }

            .get-in-touch .container-fluid .note a {
                color: #007bff;
                text-decoration: none;
            }

        .get-in-touch .container-fluid .submit-btn {
            background-color: #e53935;
            color: #fff;
            font-weight: 600;
            border: none;
            border-radius: 5px;
            padding: 12px;
            cursor: pointer;
            margin-top: 15px;
            width: 100%;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

            .get-in-touch .container-fluid .submit-btn:hover {
                background-color: #c62828;
                transform: scale(1.03);
                box-shadow: 0 4px 10px rgba(229, 57, 53, 0.4);
            }

/* ANIMATIONS */
@keyframes slideLeft {
    from {
        opacity: 0;
        transform: translateX(-80px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideRight {
    from {
        opacity: 0;
        transform: translateX(80px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .get-in-touch .container-fluid {
        flex-direction: column;
    }

        .get-in-touch .container-fluid .left-section, .right-section {
            padding: 40px 25px;
        }

        .get-in-touch .container-fluid .left-section {
            align-items: center;
            text-align: center;
        }

            .get-in-touch .container-fluid .left-section img {
                width: 80%;
                max-width: 320px;
            }

            .get-in-touch .container-fluid .left-section .desc {
                max-width: 90%;
            }
}

@media (max-width: 600px) {
    .get-in-touch .container-fluid .left-section h1 {
        font-size: 2rem;
    }

    .get-in-touch .container-fluid .form-box {
        padding: 25px;
    }
}