
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Helvetica';
        }

        @font-face {
            font-family: 'Alike';
            src: url('fonts/Alike-Regular.ttf') format('truetype');
            font-weight: 400;
            font-style: normal;
        }

        body {
            background-color: #ffffff;
            color: #172041;
            overflow-x: hidden;
        }

        .hero-section {
            background: linear-gradient(135deg, #172041 0%, #6481bd 100%);
            min-height: auto;
            position: relative;            
            padding: 20px 0;
        }

        .container {
            max-width: 1440px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
        }

        .logo {
            width: 243px;
            height: 64px;
        }

        .nav-links {
            display: flex;
            gap: 50px;
        }

        .nav-links a {
            font-size: 18px;
            font-weight: 500;
            line-height: 22px;
            text-decoration: none;
            color: #ffffff;
            transition: opacity 0.3s ease;
        }

        .nav-links a:hover {
            opacity: 0.8;
        }

        .nav-links a.active {
            color: #ffffff;
        }

        .nav-links a:not(.active) {
            color: rgba(255, 255, 255, 0.6);
        }

        .download-btn {
            background-color: #ffffff;
            border-radius: 27px;
            padding: 15px 32px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            font-size: 20px;
            font-weight: 600;
            color: #6481bd;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .download-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

        .download-btn.blue {
            background-color: #6481bd;
            color: #ffffff;
        }

        .hero-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 80px 0;
        }

        .hero-text {
            max-width: 568px;
            color: #ffffff;
        }

        .hero-title {
            font-family: 'Alike', serif;
            font-size: 62px;
            font-weight: 400;
            line-height: 74px;
            margin-bottom: 30px;
        }

        .hero-description {
            font-size: 20px;
            line-height: 30px;
            margin-bottom: 40px;
        }

        .app-badges {
            display: flex;
            gap: 24px;
        }

        .app-badge {
            width: 100%;
            height: auto;
            transition: transform 0.3s ease;
        }

        .app-badge:hover {
            transform: scale(1.05);
        }

        .hero-image {
            position: relative;
            z-index: 2;
        }

        .hero-image img {
            max-width: 100%;
            height: auto;
        }

        .hero-bg-circle {
            position: absolute;
            width: 658px;
            height: 659px;
            border-radius: 329px;
            background-color: rgba(255, 255, 255, 0.1);
            top: 164px;
            right: 248px;
            z-index: 1;
        }

        .feature-section {
            padding: 100px 0;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 80px;
        }

        .feature-image {
            position: relative;
            flex: 1;
        }

        .feature-image img {
            max-width: 700px;
            height: auto;
            position: relative;
            z-index: 2;
        }

        .feature-bg-circle {
            position: absolute;
            width: 638px;
            height: 638px;
            border-radius: 319px;
            z-index: 1;
        }

        .feature-content {
            flex: 1;
            max-width: 690px;
        }

        .feature-title {
            font-family: 'Alike', serif;
            font-size: 52px;
            font-weight: 400;
            line-height: 62px;
            margin-bottom: 30px;
            color: #172041;
        }
        .feature-title span{     
          font-family: 'Alike', serif;     
          color:#6481BD;
      }

        .feature-subtitle {
            font-size: 24px;
            line-height: 36px;
            margin-bottom: 30px;
            color: #172041;
        }

        .feature-description {
            font-size: 20px;
            line-height: 30px;
            margin-bottom: 40px;
            color: #172041;
        }

        .records-section {
            background-color: rgba(100, 129, 189, 0.1);
            padding: 80px 0;
        }

        .records-title {
            font-family: 'Alike', serif;
            font-size: 52px;
            font-weight: 400;
            line-height: 62px;
            text-align: center;
            color: #172041;
            max-width: 934px;
            margin: 0 auto 60px;
        }
        .records-title span{
          font-family: 'Alike', serif;
          color: #6481bd;
      }

        .records-features {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 50px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .record-feature {
            display: flex;
            gap: 30px;
        }

        .feature-icon {
            width: 86px;
            height: 86px;
            background-color: #ffffff;
            border-radius: 43px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .feature-icon img {
            width: 42px;
            height: 42px;
        }

        .record-feature-content h3 {
            font-family: 'Alike', serif;
            font-size: 26px;
            font-weight: 400;
            line-height: 33px;
            color: #172041;
            margin-bottom: 10px;
        }

        .record-feature-content p {
            font-size: 18px;
            line-height: 27px;
            color: #172041;
            max-width: 550px;
        }

        .records-app-badges {
            display: flex;
            justify-content: center;
            gap: 24px;
            margin-top: 60px;
        }

        .emergency-section {
            padding: 100px 0;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 80px;
        }

        .emergency-content {
            flex: 1;
            max-width: 690px;
        }

        .emergency-image {
            position: relative;
            flex: 1;
        }

        .emergency-image img {
            max-width: 700px;
            height: auto;
            position: relative;
            z-index: 2;
        }

        .emergency-bg-circle {
            position: absolute;
            width: 638px;
            height: 638px;
            border-radius: 319px;
            background-color: rgba(100, 129, 189, 0.1);
            z-index: 1;
            right: 0;
        }

        .emergency-features {
            margin-top: 40px;
        }

        .emergency-feature {
            display: flex;
            gap: 20px;
            margin-bottom: 30px;
        }

        .emergency-icon {
            width: 86px;
            height: 86px;
            background-color: rgba(100, 129, 189, 0.1);
            border-radius: 100px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .emergency-feature-content h3 {
            font-family: 'Alike', serif;
            font-size: 26px;
            font-weight: 400;
            line-height: 28px;
            color: #172041;
            margin-bottom: 8px;
        }

        .emergency-feature-content p {
            font-size: 18px;
            line-height: 27px;
            color: #172041;
            max-width: 610px;
        }

        .hospital-icon {
            position: absolute;
            bottom: -100px;
            left: 50%;
            transform: translateX(-50%);
            width: 223px;
            height: 223px;
            background-color: #ffffff;
            border-radius: 111px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
            z-index: 3;
        }

        .hospital-icon img {
            width: 174px;
            height: 202px;
        }

        .footer-main {
            background: linear-gradient(135deg, #172041 0%, #6481bd 100%);
            padding: 100px 0 60px;
            color: #ffffff;
            text-align: center;
        }

        .footer-logo {
            margin-bottom: 30px;
        }

        .footer-text {
            font-size: 22px;
            line-height: 36px;
            max-width: 934px;
            margin: 0 auto 40px;
        }

        .footer-title {
            font-family: 'Alike', serif;
            font-size: 32px;
            font-weight: 400;
            line-height: 41px;
            margin-bottom: 40px;
        }

        .footer-bottom {
            background-color: #ffffff;
            padding: 20px 0;
        }

        .footer-bottom-content {
            display: flex;
            justify-content: space-between;
            font-size: 14px;
            color: rgba(23, 32, 65, 0.75);
        }

        .footer-links {
            display: flex;
            gap: 10px;
        }

        .footer-links a {
            color: rgba(23, 32, 65, 0.75);
            text-decoration: none;
        }

        .footer-links a:hover {
            text-decoration: underline;
        }
        .innovura{
          color: rgba(23, 32, 65, 0.75);
          text-decoration: none;
          font-weight: 600;
        }
        @media (min-width:1025px) {
          .flex{
              display: flex;
              gap: inherit;
              align-items: center;
            }
        }
        @media (max-width:1024px) {
            a .logo {
                width: 200px;
                height: auto;
            }
            .download-btn {    
                padding: 10px 15px;
                font-size: 18px;
            }
            .nav-links a {
                font-size: 16px;
            }
          .container.rev {
            display: flex;
            flex-direction: column-reverse;
            }
        }
        @media (max-width:1500px) {
            .container {
            max-width: 1440px;
            margin: 0 auto;
            padding: 0 40px;
            position: relative;
        }
        }
        @media (max-width: 1200px) {            
            .hero-title, .feature-title {
                font-size: 48px;
                line-height: 58px;
            }
            
            .records-title {
                font-size: 42px;
                line-height: 52px;
            }
            
            .hero-image img, .feature-image img, .emergency-image img {
                max-width: 100%;
                width: 100%;
            }
            
            .hero-bg-circle, .feature-bg-circle, .emergency-bg-circle {
                width: 500px;
                height: 500px;
            }
            
        }

        @media (max-width: 992px) {
            .hero-content, .feature-section, .emergency-section {
                flex-direction: column;
                gap: 60px;
            }
            
            .hero-text, .feature-content, .emergency-content {
                max-width: 100%;
                text-align: center;
            }
            
            .app-badges, .records-app-badges {
                justify-content: center;
            }
            
            .records-features {
                grid-template-columns: 1fr;
            }
            
            .record-feature {
                max-width: 700px;
                margin: 0 auto;
            }
            
            .emergency-features {
                max-width: 700px;
                margin: 40px auto 0;
            }
            
            .emergency-feature {
                text-align: left;
            }
        }

        @media (max-width: 768px) {
            /* .nav-container {
                flex-direction: column;
                gap: 20px;
            } */
            
            .nav-links {
                gap: 20px;
                flex-wrap: wrap;
                justify-content: center;
            }
            
            .hero-title, .feature-title {
                font-size: 36px;
                line-height: 46px;
            }
            
            .records-title {
                font-size: 32px;
                line-height: 42px;
            }
            
            .hero-description, .feature-description {
                font-size: 18px;
                line-height: 28px;
            }
            
            .feature-subtitle {
                font-size: 20px;
                line-height: 30px;
            }
            
            .record-feature {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }
            
            .footer-bottom-content {
                flex-direction: column;
                gap: 10px;
                align-items: center;
                text-align: center;
            }
        }
.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    position: relative;
}
.nav-links {
    display: flex;
    gap: 1.5rem;
}
.menu-toggle {
    display: none;
    font-size: 2rem;
    cursor: pointer;
}
/* Mobile menu styles */
@media (max-width: 1024px) {
    
    .logo {
      width: 243px;
      height: auto;
    }
    .menu-toggle {
        display: block;
        color:white;
    }
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        padding: 20px !important;
        left: auto;
        width: fit-content;
        right: 0;
        background: white;
        flex-direction: column;
        align-items: center;
        padding: 1rem 0;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        z-index: 10;
    }
    .nav-links a{
      color: #172041 !important;
    }
    .nav-links.active {
        display: flex;
        color: #6481bd !important;
    }

    .download-btn {
        display: none; /* Optional: Hide download on mobile */
    }
}     
@media (max-width: 465px) {
    
    .logo {
      width: 170px;
      height: auto;
    }
    .nav-container {
    padding: 0;
    }
}
/* Scroll to Top Button Styles */
#scrollTopBtn {
  display: none; /* Hidden by default */
      position: fixed;
    bottom: 20px;
    right: 10px;
    z-index: 100;
    font-size: 28px;
    width: 50px;
    height: 50px;
    border: none;
    outline: none;
    background-color: #6481BD;
    color: white;
    cursor: pointer;
    padding: 0px;
    border-radius: 50%;
  transition: background-color 0.3s ease;
}

#scrollTopBtn:hover {
  background-color: #6481BD;
}
@media (min-width: 769px) and (max-width: 1023px) {
    .footer-bottom-content {
    font-size: 12px;
    
}
}