 :root {
            --primary-blue: #2563eb;
            --dark-text: #1a1a1a;
        }
        
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            overflow-x: hidden;
        }

        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
        }
        
        ::-webkit-scrollbar-track {
            background: #f1f1f1;
        }
        
        ::-webkit-scrollbar-thumb {
            background: #2563eb;
            border-radius: 10px;
        }
        
        ::-webkit-scrollbar-thumb:hover {
            background: #1d4ed8;
        }
        
        /* Firefox */
        * {
            scrollbar-width: thin;
            scrollbar-color: #2563eb #f1f1f1;
        }
        
        /* Navbar */

        .navbar { padding: 1.5rem 0; position: sticky; top: 0; z-index: 1000; transition: all 0.3s ease; } 
        .navbar.scrolled { box-shadow: 0px 0 10px 0px #2563eb; padding: 1rem 0; }
        .navbar {
            padding: 1.5rem 0;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.25rem;
            color: var(--dark-text) !important;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .brand-icon {
            width: 40px;
            height: 40px;
            background: var(--primary-blue);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
        }
        
        .navbar-nav .nav-link {
            color: #4b5563;
            font-weight: 500;
            margin: 0 1rem;
            transition: color 0.3s;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--primary-blue);
        }
        
        /* Hero Section */
        .hero-section {
            padding: 4rem 0;
            min-height: 80vh;
            display: flex;
            align-items: center;
        }
        
        .hero-title {
            font-size: 90px;
            font-weight: 500;
            line-height: 1.1;
            color: var(--dark-text);
            margin-bottom: 1.5rem;
        }
        
        .hero-title .highlight {
            color: var(--primary-blue);
            font-weight: 900;
        }
        
        .hero-description {
            font-size: 1.125rem;
            color: #6b7280;
            line-height: 1.7;
            margin-bottom: 2.5rem;
            max-width: 500px;
        }
        
        .btn-explore {
            background: var(--primary-blue);
            color: white;
            padding: 1rem 2.5rem;
            border-radius: 50px;
            font-weight: 600;
            border: none;
            font-size: 1.1rem;
            transition: all 0.3s;
        }
        
        .btn-explore:hover {
            background: #1d4ed8;
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
            color: #fff;
        }
        
        .btn-play {
            background: white;
            color: var(--dark-text);
            padding: 1rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            border: 2px solid #e5e7eb;
            margin-left: 1rem;
            transition: all 0.3s;
        }
        
        .btn-play:hover {
            border-color: var(--primary-blue);
            color: var(--primary-blue);
        }
        
        .play-icon {
            display: inline-block;
            width: 0;
            height: 0;
            border-style: solid;
            border-width: 6px 0 6px 10px;
            border-color: transparent transparent transparent currentColor;
            margin-right: 0.5rem;
        }
        
        /* Phone Mockup */
        .phone-mockup {
            position: relative;
            max-width: 350px;
            margin: 0 auto;
        }

        .phone-mockup img {
            width: 100%;
        }
        
        .phone-frame {
            background: #000;
            border-radius: 50px;
            padding: 15px;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
        }
        
        .phone-notch {
            background: var(--primary-blue);
            border-radius: 40px 40px 0 0;
            padding: 20px 20px 10px;
            position: relative;
        }
        
        .notch {
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 150px;
            height: 30px;
            background: #000;
            border-radius: 0 0 20px 20px;
        }
        
        .status-bar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: white;
            font-size: 0.875rem;
            font-weight: 600;
            padding: 0 10px;
        }
        
        .app-header {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: white;
            padding: 15px 20px;
            font-size: 1.25rem;
            font-weight: 700;
        }
        
        .phone-content {
            background: #f9fafb;
            padding: 20px;
            border-radius: 0 0 35px 35px;
            min-height: 500px;
        }
        
        .section-title {
            font-size: 0.95rem;
            font-weight: 700;
            color: var(--dark-text);
            margin-bottom: 1rem;
        }
        
        .note-card {
            background: white;
            border-radius: 12px;
            padding: 12px;
            margin-bottom: 10px;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
        }
        
        .note-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 8px;
        }
        
        .note-name {
            font-weight: 600;
            color: var(--dark-text);
            font-size: 0.9rem;
        }
        
        .note-type {
            color: #6b7280;
            font-size: 0.75rem;
        }
        
        .note-date {
            color: #9ca3af;
            font-size: 0.75rem;
        }
        
        .patients-card {
            background: linear-gradient(135deg, var(--primary-blue), #3b82f6);
            border-radius: 16px;
            padding: 20px;
            color: white;
            margin: 1.5rem 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .patients-count {
            font-size: 2rem;
            font-weight: 700;
        }
        
        .quick-actions {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
            margin: 1.5rem 0;
        }
        
        .action-btn {
            background: white;
            border-radius: 12px;
            padding: 15px;
            text-align: center;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
            transition: all 0.3s;
        }
        
        .action-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }
        
        .action-icon {
            width: 40px;
            height: 40px;
            background: var(--primary-blue);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 8px;
            color: white;
        }
        
        .action-label {
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--dark-text);
        }
        
        .reminder-item {
            background: white;
            border-radius: 12px;
            padding: 12px;
            margin-bottom: 10px;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
        }
        
        .reminder-title {
            color: var(--primary-blue);
            font-weight: 600;
            font-size: 0.85rem;
            margin-bottom: 4px;
        }
        
        .reminder-desc {
            color: #6b7280;
            font-size: 0.75rem;
        }
        
        .reminder-badge {
            background: #fee2e2;
            color: #dc2626;
            padding: 2px 8px;
            border-radius: 4px;
            font-size: 0.7rem;
            font-weight: 600;
            float: right;
        }

        .btn-container {
            width: 100%;
        }

        /* Highlights Section */
        .highlights-section {
            padding: 50px 0;
            background: #eee;
            position: relative;
            overflow: hidden;
        }

        .highlights-content h2 {
            font-size: 48px;
            font-weight: 700;
            color: var(--dark-text);
            margin-bottom: 20px;
        }

        .highlights-underline {
            width: 60px;
            height: 4px;
            background: linear-gradient(90deg, #4169E1, #6B8EF6);
            margin-bottom: 50px;
        }

        .highlight-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            margin-bottom: 30px;
        }

        .highlight-number {
            min-width: 50px;
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #4169E1, #6B8EF6);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 18px;
            flex-shrink: 0;
        }

        .highlight-text {
            padding-top: 12px;
        }

        .highlight-text h3 {
            font-size: 18px;
            font-weight: 600;
            color: var(--dark-text);
            margin: 0;
        }

        .highlights-visual {
            position: relative;
            height: 600px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .highlights-visual img {
            width: 100%;
            z-index: 2;
            max-width: 500px;
        }

        .phone-screen-highlight {
            width: 100%;
            height: 100%;
            background: #fff;
            border-radius: 32px;
            overflow: hidden;
            position: relative;
        }

        .phone-notch-highlight {
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 150px;
            height: 30px;
            background: #000;
            border-radius: 0 0 20px 20px;
            z-index: 10;
        }

        .phone-header-highlight {
            background: linear-gradient(135deg, #4169E1, #6B8EF6);
            color: white;
            padding: 40px 20px 20px;
            text-align: center;
        }

        .phone-header-highlight h4 {
            font-size: 18px;
            font-weight: 600;
            margin: 0;
        }

        .phone-content-highlight {
            padding: 20px;
            background: #f8f9fa;
            height: calc(100% - 90px);
        }

        .blue-shape {
            position: absolute;
            bottom: -240px;
            right: -94px;
            width: 700px;
            height: 700px;
            background: linear-gradient(135deg, #4169E1, #6B8EF6);
            border-radius: 50%;
            z-index: 0;
        }

        /* Application Feature Section */
        .app-feat-sec {
            background: linear-gradient(90deg,rgba(80, 118, 232, 1) 50%, rgba(255, 255, 255, 1) 50%);
        }

        h2.app-feat-heading {
            font-size: 48px;
            font-weight: 700;
            color: var(--dark-text);
            margin-bottom: 20px;
        }
        .app-feat-sec .row {
            align-items: center;
        }
        .app-feat-se .highlight-item:last-child {
            margin-bottom: 0;
        }
        .app-feature-img-mobile {
            margin-bottom: 30px;
        }
        
        /*---Contact Section-----*/
        
        .contact-sec .phone-mockup{
            width: 100%;
            max-width: 100%;
        }

        ul.contact-ul {
            padding: 0;
            list-style: none;
        }
        .contact-ul li a {
            text-decoration: none;
            color: #6b7280;
            font-size: 18px;
        }
        .contact-ul li {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 20px;
        }

        .contact-ul li i {
            color: #fff;
            background: #5076e8;
            padding: 5px;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
        }
        .hero-section.contact-sec .content-area {
            padding-top: 50px;
        }

        .contact-circle::before {
            content: "";
            height: 600px;
            width: 600px;
            background: #5076e8;
            border-radius: 50%;
            position: absolute;
            bottom: -230px;
            left: -60px;
        }
        section.hero-section.contact-sec {
            overflow: hidden;
            background: #eee;
        }
        .contact-sec h2.app-feat-heading {
            color: #5076e8;
        }
        @media(min-width: 1921px){
            .app-feat-sec .container-fluid{
                max-width: 1320px;
            }
        }

        @media(max-width: 992px){
            .phone-mockup {
                margin: unset !important;
            }
            nav.navbar.navbar-expand-lg.navbar-light.bg-white {
                border-bottom: 1px solid #2563eb;
                box-shadow: 0px 0 10px 0px #2563eb;
            }
            .hero-section {
                padding: 30px 0;
            }

            .highlights-visual {
                height: 500px;
                margin-top: 50px;
            }

            .phone-mockup-highlight {
                width: 240px;
                height: 490px;
            }
            .app-feat-sec {
                background: linear-gradient(
            180deg, rgba(80, 118, 232, 1) 50%, rgba(255, 255, 255, 1) 50%);
            }
             .app-feat-sec .highlight-item:last-child {
                margin-top: 0px;
            }
            h2.app-feat-heading {
                color: #ffffff;
            }
            .app-fea-right-container .highlights-underline {
                background: #fff;
            }
        }
        
        @media (max-width: 768px) {
            .hero-title {
                font-size: 3rem;
            }

            .highlights-content h2 {
                font-size: 36px;
                margin-bottom: 20px;
            }

            .highlights-visual {
                height: 450px;
                order: -1;
                margin-bottom: 30px;
            }

            .phone-mockup-highlight {
                width: 200px;
                height: 410px;
            }

            .phone-mockup-highlight.phone-1 {
                left: 20px;
            }

            .phone-mockup-highlight.phone-2 {
                right: 20px;
            }

            .blue-shape {
                width: 80%;
                height: 60%;
            }
        }

        @media (max-width: 480px) {
            .highlights-content h2 {
                font-size: 32px;
            }

            .highlight-number {
                min-width: 45px;
                width: 45px;
                height: 45px;
                font-size: 16px;
            }

            .highlight-text h3 {
                font-size: 16px;
            }

            .highlights-visual {
                height: 380px;
            }

            .phone-mockup-highlight {
                width: 160px;
                height: 330px;
                border-radius: 32px;
                padding: 10px;
            }

            .phone-screen-highlight {
                border-radius: 26px;
            }

            .phone-header-highlight h4 {
                font-size: 14px;
            }

            .phone-content-highlight {
                padding: 15px;
            }
            .btn-play{
                margin: 0;
                margin-top: 10px;
            }
            .hero-section.contact-sec .content-area,
            section.app-feat-sec {
                padding-top: 0 !important;
                padding-bottom: 0 !important;
            }
        }