

/* Global Styles */
        :root {
            --primary-color: #3a86ff;
            --secondary-color: #3a86ff;
            --dark-color: #1a1a2e;
            --light-color: #f8f9fa;
            --gray-color: #6c757d;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html{
          scroll-behavior: smooth;
          scroll-padding-top: 70px;
        }
        body {
            color: var(--dark-color);
            line-height: 1.6;
            font-family: 'Inter', sans-serif;
            background: linear-gradient(180deg, #FFF 0%, #E5F2FF 18.27%, #FFF 29.33%, #EEF7FF 44.71%, #FFF 56.25%, #E5F2FF 70.67%, #FFF 84.62%, #EEF7FF 100%);
        }
        h1{
          font-size: 48px;
          font-weight: 700;
          color: #001f3f;
          text-align: center;
          letter-spacing: 0px;
          line-height: 55px;
        }
        @media only screen and (max-width: 768px) {
          h1{
            font-size: 32px;
           line-height: 1.4;
          }
        }
        h1 span{
          display: block;
          color: #3a86ff;
          font-style: italic;
          font-size: 42px;
        }
        @media only screen and (max-width: 768px) {
          h1 span{
            font-size: 32px;
            display: inline-block;
          }
        }
        .container {
            width: 100%;
            max-width: 960px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .btn {
            display: inline-block;
            background: linear-gradient(143.65deg, #003F84 10.22%, #51B76C 99.64%);
            color: white;
            padding: 10px 20px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            font-size: 16px;
        }
        
        .btn:hover {
            background: linear-gradient(143.65deg, #022750 10.22%, #2D6F3E 99.64%);
            transform: translateY(-2px);
        }
        
        .btn-outline {
            background: linear-gradient(143.65deg, #003F84 10.22%, #51B76C 99.64%);
            color: #ffffff;
            margin-left: 30px;
        }
        
        .btn-outline:hover {
            background: var(--primary-color);
            color: white;
        }
        .medical-wrap{
          position: relative;
          overflow: hidden;
        }

        .section-hour {
            padding: 53px 0 58px;
            position: relative;
            overflow: hidden;
        }
        
        .section-title {
            font-size: 2.5rem;
            margin-bottom: 30px;
            text-align: center;
        }
        
        .section-subtitle {
            font-size: 1.2rem;
            color: var(--gray-color);
            text-align: center;
            margin-bottom: 50px;
        }
        
        /* Header Styles */
        header {
           position: fixed;
            top: 5px;
            left: 0;
            right: 0;
            z-index: 1000; 
            max-width: 1200px;
            border: 1px solid #E5F2FF;
            box-shadow: inset 4px 4px 4px #DBEDFF, inset 0px -4px 4px #E5F2FF;
            backdrop-filter: blur(10px);
             background-color: #ffffff73;
            display: flex;
            justify-content: space-between;
            align-items: center;

            padding: 12px 25px;
            border-radius: 8px;
            margin: 0 auto; 
        }
        
        .navbar {
            display: flex;
            justify-content: flex-end;
            align-items: center;
            padding: 4px 0;
            width: 54%;
        }
        .navbar .btn{
              display: inline-block;
          background: linear-gradient(143.65deg, #003F84 10.22%, #51B76C 99.64%);
          color: white;
          padding: 6px 20px;
          border: none;
          border-radius: 5px;
          cursor: pointer;
          text-decoration: none;
          font-weight: 600;
          font-size: 16px;
          transition: all 0.3s ease;
        }
        .navbar .btn:hover{
            background: linear-gradient(143.65deg, #022750 10.22%, #2D6F3E 99.64%);
        }
        .logo img{
          width: 120px;
        }
        @media only screen and (max-width: 400px) {
            .logo img{
              width: 95px;
            }
          }
        .nav-links {
            display: flex;
            list-style: none;
        }
        
        
        .nav-links a {
            text-decoration: none;
            color: #4C6177;
            font-weight: 400;
            font-size: 16px;
            transition: color 0.3s ease;
            padding-right: 22px;
        }
        
        .nav-links a:hover {
            color: var(--primary-color);
        }
        
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--dark-color);
        }
        .medical {
          margin: 146px auto 60px;
          position: relative;
          text-align: center;
        }

  
    .medical p {
      margin-top: 10px;
      font-size: 1.3rem;
      color: #555;
    }
    @media only screen and (max-width: 768px) {
      .medical p {
        font-size: 16px;
      }
    }
    .medical .btn{
      margin-top: 24px;
      padding: 10px 32px;
    }
    .medical .cta-btn {
      margin-top: 20px;
      background: linear-gradient(143.65deg, #003F84 10.22%, #51B76C 99.64%);
      padding: 10px 25px;
      color: white;
      border-radius: 6px;
      font-weight: bold;
      text-decoration: none;
      display: inline-block;
    }

    .medical .sub-note {
      margin-top: 10px;
      color: #333;
      font-size: 16px;
    }

    .video-placeholder {
      margin: 49px auto;
      width: 100%;
      border-radius: 15px;
      transition: transform 0.3s ease;
    backdrop-filter: blur(3px);
    padding: 30px 30px;
    border: 1px solid #CCE5FF;
        }
        .video-placeholder iframe{
          height: 500px;
              border-radius: 15px;
        }
      @media only screen and (max-width: 768px) {
        .video-placeholder  {
          height: 235px;
          margin: 20px auto 0;
          padding: 8px 8px;
        }
        .video-placeholder iframe{
          height: 200px;
        }
      }
    .stethoscope-left,
    .stethoscope-right {
      position: absolute;
      width: 307px;
      z-index: -1;
    }

    .stethoscope-left {
      left: -200px;
      top: 10px;
    }

    .stethoscope-right {
      right: -137px;
      top: -13px;
    }

     @media only screen and (max-width: 768px) {
         .stethoscope-left,
        .stethoscope-right {
          width: 190px;
        }
        .stethoscope-left {
          left: -95px;
          top: 71px;
        }
        .stethoscope-right {
            right: -80px;
            top: 84px;
        }
        .medical{
          margin: 103px auto 0;
        }
      }
        /* Hero Section */
        .hero {
           position: relative;
        }
        
        
        .hero p {
          color: var(--gray-color);
              margin-bottom: 40px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            line-height: 27px;
            font-size: 20px;
            margin-top: 20px;
        }
        .hero-bottom{
          text-align: center;
          margin-top: 40px;
        }
        .hero-bottom p{
          color: #3a86ff;
        font-size: 16px;
        line-height: 1.8;
        }
        .hero-badges {
            margin-top: 30px;
            display: flex;
            justify-content: center;
            gap: 20px;
            font-size: 0.9rem;
            color: var(--gray-color);
        }
        .hero .feature-title {
              font-size: 20px;
              margin-bottom: 15px;
              font-weight: 400;
          }
          .hero .feature-card {
            background: transparent;
            border-radius: 10px;
            padding: 16px 18px;
            text-align: center;
            transition: transform 0.3s ease;
            backdrop-filter: blur(3px);
        }
        .hero .feature-card img {
            width: 60px;
        }

        .hero .feature-icon{
          margin-bottom: 0;
        }
        .hero .features-grid{
          margin-top: 37px;
        }

        .living-left,
        .living-right {
          position: absolute;
          width: 19%;
          z-index: -1;
          height: 75%;
        }

        .living-left {
          left: -141px;
          top: 30px;
        }

        .living-right {
          right: -147px;
          top: 166px;
        }
        .othisis{
              margin-top: 60px;
              position: relative;

        }
        .othisis .features-grid{
          margin-top: 13px;
          gap: 0;
      
          border-bottom: 1px solid #99caff;

        }
        .othisis .feature-card{
          padding: 23px 9px 0px;
          border-radius: 0;
          border: 0;
        }
         @media only screen and (max-width: 768px) {
          .othisis .feature-card{
            padding: 20px 15px;
          display: flex;
          flex-direction: column;
          }
         }
        .othisis p {
          font-size: 16px;
          line-height: 1.4;
          color: #AAA9B7;
          padding-bottom: 27px;
        }
        .othisis .feature-title {
            font-size: 23px;
            margin-bottom: 11px;
            color: #787c7f;
        }
        .othisis .feature-card.active .feature-title {
            color: #000;
        }
        .othisis .feature-card.active p{
          color: #625B71;
        }
          @media only screen and (max-width: 768px) {
          .hero .feature-card img {
              width: 32px;
          }
          .hero .feature-title{
            font-size: 16px;
            width: 100%;
          }
          .section-hour{
            padding: 35px 0 9px;
          }
          .othisis{
                margin-top: 22px;
          }
        }
        #demo-interfaces{
          padding-bottom: 30px;
          position: relative;
        }
        .demo-interface{
              display: block;
          border-radius: 10px;
          padding: 20px;
          margin-top: 50px;
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
          transition: transform 0.3s ease;
          backdrop-filter: blur(3px);
          padding: 30px 30px;
          border: 1px solid #CCE5FF;
        }
         .video-container {
        position: relative;
        padding-bottom: 56.25%; /* 16:9 aspect ratio */
        height: 0;
        overflow: hidden;
        border-radius: 10px;
        background: #000;
    }
    .video-container iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
    .tab-progress {
        height: 4px;
        background: #e0e0e0;
        margin-top: 10px;
        border-radius: 2px;
        overflow: hidden;
        position: absolute;
    bottom: 0;
    width: 100%;
    }
      @media only screen and (max-width: 768px) {
           .tab-progress {
              width: 94%;
          }
          .othisis p{
                padding-bottom: 0;
          }
          .othisis .feature-title{
            margin-bottom: 0;
            justify-content: center;
          }
         }
    .progress-bar {
        height: 100%;
        background: #3a86ff;
        border-radius: 2px;
        transition: width 0.3s ease;
    }
    .feature-card {
        cursor: pointer;
        transition: all 0.3s ease;
    }
    .feature-card.active {
        background: #f5f7fa;
      }
        /* Features Section */
        .features {
            background-color: white;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 50px;
        }
        
        .feature-card {
            background: transparent;
            border-radius: 10px;
            padding: 10px 30px;
            text-align: center;
            transition: transform 0.3s ease;
            border: 1px solid #CCE5FF;
            backdrop-filter: blur(2px);
        }
        
        .feature-card:hover {
/*            transform: translateY(-10px);*/
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        
        .feature-icon {
            font-size: 3rem;
            color: var(--primary-color);
            margin-bottom: 20px;
        }
        .feature-icon i{
          
          color: #004084;
          display: inline-block;
        }
        .feature-title {
            font-weight: 600;
            font-size: 18px;
        }
        #feature-selector .feature-card {
        cursor: pointer;
        transition: all 0.3s ease;
          }
          
          #feature-selector .feature-card.active {
              background: linear-gradient(180deg, rgba(51, 150, 255, 0) 0%, #e4f1ff 100%);
              color: #625B71;
              box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
              position: relative;
          }
          
          #feature-selector .feature-card.active .feature-icon {
              color: white;
          }
          
          #feature-selector .feature-card:hover:not(.active) {
/*              transform: translateY(-5px);*/
              box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
          }
           @media only screen and (max-width: 768px) {
            .feature-card{
               display: flex;
              gap: 18px;
              text-align: left;
            }
            .feature-icon{
                width: 27%;
                margin-bottom: 0;
            }
            .feature-title{
              font-size: 16px;
              align-items: center;
            display: flex;
            width: 100%;
            }
          }
          .section-othisis{
            overflow: hidden;
          }
          .section-othisis-left,
    .section-othisis-right {
      position: absolute;
      width: 472px;
      z-index: -1;
    }

    .section-othisis-left {
      left: -220px;
      top: 220px;
    }

    .section-othisis-right {
      right: -220px;
      top: 220px;
    }

     @media only screen and (max-width: 768px) {
         .section-othisis-left,
        .section-othisis-right {
          width: 190px;
        }
        .section-othisis-left {
          left: -95px;
          top: 51px;
        }
        .section-othisis-right {
            right: -95px;
            top: 51px;
        }
      }
        /* How It Works Section */
        .how-it-works {
            background: linear-gradient(135deg, #f5f7fa 0%, #e4e8eb 100%);
        }
        
        .steps {
            display: flex;
            justify-content: space-between;
            margin-top: 50px;
            flex-wrap: wrap;
        }
        
        .step {
            flex: 1;
            min-width: 250px;
            text-align: center;
            padding: 0 20px;
            margin-bottom: 30px;
        }
        
        .step-number {
            display: inline-block;
            width: 50px;
            height: 50px;
            background: var(--primary-color);
            color: white;
            border-radius: 50%;
            font-size: 1.5rem;
            line-height: 50px;
            margin-bottom: 20px;
        }
        
        /* Pricing Section */
        .pricing {
            background-color: white;
        }
        
        .pricing-heading{
          display: flex;
          align-items: center;
          justify-content: space-around;
              margin-top: 70px;
        }
        .pricing-heading h1{
          text-align: left;
        }
        .pricing-heading .toggle-switch button{
          line-height: 1;
          padding: 12px;
          border-radius: 30px;
          border: none;
          color: #848199;
          cursor: pointer;
          background: transparent;
        }
        .pricing-heading .toggle-switch button.active{
              color: #fff;
          background: #004084;
        }
        .pricing-plans {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-top: 50px;
            flex-wrap: wrap;
            background: #f7fbff;
            border-radius: 30px;
        }
        
        .pricing-card {
            border-radius: 10px;
            padding: 20px 30px;
            text-align: left;
            flex: 1;
            min-width: 267px;
            max-width: 350px;
            transition: all 0.3s ease;
            background: #f7fbff;
        }
        
        .pricing-card:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        
        .pricing-card.popular {
            background: linear-gradient(143.65deg, #003F84 10.22%, #51B76C 99.64%);
            transform: scale(1.15);
            color: white;
            position: relative;
        }
        
        .pricing-card.popular::before {
            content: "Most Popular";
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--secondary-color);
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
        }
        
        .pricing-title {
            font-size: 1.5rem;
            margin-bottom: 0;
        }
         .pricing-card p{
          font-size: 15px;
          padding-bottom: 30px;
         }
        
        .pricing-price {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 6px;
        }
        
        .pricing-features {
            list-style: none;
            margin-bottom: 30px;
        }
        
        .pricing-features li {
          font-size: 15px;
          padding-bottom: 10px;
          position: relative;
        }
        .pricing-features li i {
          font-size: 12px;
          color: #004084;
          margin-right: 10px;
        }
        .pricing-card.popular li i {
          color: #fff;
        }

        .enterprises-contact{
          margin-top: 60px;
          display: flex;
          justify-content: center;
        }
        .enterprises-contact p{
            width: fit-content;
            padding: 10px 15px;
            background: #f7fbff;
            box-shadow: inset 0px 0px 10px rgb(219 219 219);
            border-radius: 10px;
            font-size: 18px;

        }
        .enterprises-contact p a{
          text-decoration: none;
          color: #3396FF;
        }
        .enterprises-contact p span{
          padding: 0 10px;
        }

        .security-section{
          padding-top: 310px;
          background: url(../img/security-bg.png) center 100px no-repeat;
          background-size: 52% 71%;
        }

        .security-section .section-subtitle{
            font-size: 20px;
        }
         @media only screen and (max-width: 768px) {
             .security-section .section-subtitle{
              font-size: 16px;
              padding-top: 10px;
          }
          .security-section{
            background-size: 100% 25% !important;
            background: url(../img/security-bg.png) center 16px no-repeat;
          }
          .enterprises-contact{
            margin-top: 14px;
            text-align: center;
          }
          .security-section h1{
            margin-top: 110px;
          }
        }
        .security-section .features-grid{
              grid-template-columns: repeat(4, 1fr);
        }


        /* FAQ Section */

        #faq{
              padding: 50px 0 100px;
        }
         @media only screen and (max-width: 768px) {
            #faq{
              padding: 40px 0 0;
            }
        }
         .tabs {
          display: flex;
          flex-wrap: wrap;
          gap: 10px;
          margin-bottom: 30px;
          margin-top: 30px;
          justify-content: center;
          font-family: 'Inter', sans-serif;
        }

    .tabs button {
      padding: 10px 20px;
      border: 1px solid #CCE5FF;
      background: white;
      border-radius: 8px;
      cursor: pointer;
      font-weight: 500;
      font-size: 16px;
      transition: all 0.2s ease;
      font-family: 'Inter', sans-serif;
      backdrop-filter: blur(3px);
    }
    @media (max-width: 768px) {
      .tabs button {
          padding: 10px 7px;
      }
    }
    .tabs button.active {
      background-color: #99CAFF;
      border-color: #CEE6F3;
    }

    .faq-container {
      display: none;
      max-width: 800px;
      margin: auto;
    }

    .faq-container.active {
      display: block;
    }

    .faq-item {
      border: 1px solid #e2e8f0;
      border-radius: 8px;
      margin-bottom: 12px;
      overflow: hidden;
      transition: all 0.3s ease;
      border: 1px solid var(--Overlays-Default, #00000033)
    }

    .faq-question {
      padding: 18px 20px;
      cursor: pointer;
      font-weight: 600;
      display: flex;
      justify-content: space-between;
      align-items: center;

    }


    .faq-answer {
      background-color: #f1f5f9;
      border-top: 1px solid #e2e8f0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 15px; 
}

.faq-item.active .faq-answer {
    overflow: visible;
}
    .faq-item.open .icon i {
      transform: rotate(0deg);
    }

    .icon i {
      transition: transform 0.3s ease;
    }
        /* CTA Section */
        .cta {
            padding: 100px 0;
        }
        
        .cta h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            text-align: left;
        }
        
        .cta p {
            font-size: 1.2rem;
            margin-bottom: 40px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        /* CTA Section Styles */
.cta {
    padding: 60px 0;
}

.cta-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
        gap: 19px;
}
.cta-content h1{
    text-align: left;
}
.cta-content h1 span{
    display: contents;
}
.cta-text {
flex: 1;
    margin-bottom: 40px;
}
@media only screen and (max-width: 768px) {
        .cta p {
          font-size: 16px;
          padding-top: 10px;
          margin-bottom: 0;
          text-align: center;
        }
        .cta-text{
              margin-bottom: 0;
        }
        .cta {
          padding: 40px 0px;
      }
      .cta-content{
        padding: 0;
      }
      .cta-content h1{
        text-align: center;
      }
    }
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-title span {
    color: var(--secondary-color); /* Highlight color for specific words */
}

.cta-subtitle {
    font-size: 1.2rem;
    color: var(--text-color);
    max-width: 700px;
    margin: 0 auto;
}

/* Form Styles */
.cta-form-container {
    max-width: 600px;
    margin: 0 auto;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0px 7px 4px 0px #C8ECFF;
    border: 1px solid #CCE5FF

}

.cta-form {
    display: flex;
    flex-direction: column;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 0;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    text-align: left;
    color: var(--dark-color);
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.form-checkbox {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.form-checkbox input {
  width: fit-content;
    margin-right: 10px;
}

.form-checkbox label {
    color: #C5C0DB;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: white;
    width: 100%;
}

.btn-primary:hover {
    background-color: var(--secondary-dark); /* Darker shade for hover */
    transform: translateY(-2px);
}
        
        /* Footer */
       .footer {
        background-color: #E5F2FF;
        padding: 20px 30px;
      }

      .footer-content {
        display: flex;
        align-items: center;
        justify-content: space-between;
        max-width: 1200px;
        margin: auto;
      }

      .footer-logo {
        width: 150px;
      }

      .footer-right {
        font-size: 14px;
        color: #1e293b;
        display: flex;
        align-items: center;
      }
         @media only screen and (max-width: 768px) {
            .footer-content{
              display: block;
            }
            .footer-logo {
                width: 119px;
                display: block;
                margin: 0 auto;
            }
            .footer-right{
              margin-top: 18px;
                text-align: center;
                display: block;
            }
        }
        /* Responsive Styles */
        @media (max-width: 992px) {
            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .steps {
                flex-direction: column;
                align-items: center;
            }
            
            .step {
                max-width: 500px;
            }
            .cta-content{
              flex-direction: column;
            }
        }
        
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            
            .mobile-menu-btn {
                display: block;
                border: 1px solid #CEE6F3;
                padding: 10px;
                border-radius: 10px;
            }
            .mobile-menu-btn  i{
                color: #3396FF;
            }
            .hero {
                padding: 0px 0 0px;
            }
            .hero p {
                font-size: 1.2rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .features-grid, .security-section .features-grid {
                grid-template-columns: 1fr;
            }
            
            .pricing-plans {
                flex-direction: column;
                align-items: center;
            }
            
            .pricing-card {
                max-width: 100%;
            }
            .living-left, .living-right{
              display: none;
            }
            .hero p{
              font-size: 16px;
        line-height: 1.4;
            }
            .hero .features-grid{
              padding: 0 0%;
            }
            .hero .feature-card{
              display: flex;
              gap: 15px;
            }
            .hero .feature-title{
              margin-bottom: 0;
              text-align: left;
            }
            .hero .feature-icon{
              margin-bottom: 0;
               line-height: 1;
            }

        }
        
        @media (max-width: 576px) {
            .hero {
                padding: 0px 0 0px;
            }
            .section {
                padding: 16px 0;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .btn {
                padding: 8px 16px;
            }
        }

    /* Calculator Header */
        .calculator-header-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            margin-bottom: 30px;
            justify-content: center;
            margin-top: 70px;
        }

        .calculator-header {
            flex: 1;
            min-width: 300px;
        }
        .calculator-header h1{
              text-align: left;
          padding-bottom: 10px;
        }
        .calculator-header .section-title{
            text-align: left;
        }
        .calculator-header p{
            text-align: left;
            font-size: 20px;
        }
         @media only screen and (max-width: 768px) {
             .calculator-header p{
            text-align: center;
            font-size: 16px;
            padding-top: 10px;
          }
          .calculator-header h1{
            text-align: center;
          }
          .calculator-header{
            margin-top: 30px;
          }
        }
        .section-title {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: #333;
        }

        .section-title span {
            color: #3a86ff;
        }

        .section-subtitle {
            font-size: 1.1rem;
            color: #666;
            line-height: 1.6;
        }

        /* Input Section */
        .input-result-main h4 {
            margin-bottom: 20px;
            color: #333;
            font-size: 1.2rem;
        }

        .input-section {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            justify-content: center;
        }

        .input-group {
            flex: 1;
        }

        .input-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #8C8C8C;
            font-size: 12px;
            text-align: center;
            padding: 0 30px;
        }
        
        .input-group input {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 6px;
            font-size: 30px;
            text-align: center;
            color: #3a86ff;
            font-family: 'Inter', sans-serif;
            font-weight: 600;
        }
        @media only screen and (max-width: 1200px) {
             .input-group label{
                padding: 0 47px;
             }

        }
        @media only screen and (max-width: 768px) {
             .input-group{
               margin-bottom: 20px;
                display: flex;
                gap: 13px;
                align-items: center
             }
             .input-group label{
               min-width: 153px; 
               padding: 0 0;
             }
             .input-group input {
              flex: 1; 
              padding: 8px 12px; 
              border: 1px solid #ddd;
              border-radius: 4px;
              font-size: 20px;
          }
          .input-result-main{
            margin-bottom: 20px;
          }
        }
        /* Chart Toggle */
        .chart-toggle {
            display: flex;
            gap: 10px;
            margin-bottom: 20px;
        }

        .toggle-btn {
            padding: 10px 20px;
            background: #f5f5f5;
            border: 1px solid #ddd;
            border-radius: 25px;
            cursor: pointer;
            font-weight: 600;
            color: #666;
            transition: all 0.3s ease;
        }

        .toggle-btn.active {
            background: #004084;
            color: white;
            border-color: #004084;
        }

        /* Chart Containers */
        .chart-main {
            margin-top: 83px;
        }

        .chart-container {
            display: none;
            background: white;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            margin-bottom: 30px;
        }

        .chart-container.active {
            display: block;
        }

        .chart-container h2 {
            font-size: 1.2rem;
            margin-bottom: 10px;
            color: #333;
        }

        .chart-container p {
            font-size: 0.9rem;
            color: #666;
            margin-bottom: 20px;
        }

        canvas {
            width: 100% !important;
            height: 270px !important;
        }
         @media only screen and (max-width: 768px) {
          .chart-container{
                margin-bottom: 18px;
          }
         }
        /* Results Section */
        .results-section {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin-top: 100px;
            border: 1px solid #CCE5FF;
            border-radius: 13px;
            padding: 30px;
            background: linear-gradient(143.65deg, rgb(255 255 255 / 50%) 10%, rgb(240 243 246 / 50%) 50%);
        }

        .result-card {
            background: white;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }

        .result-card-sec {
            margin-bottom: 6px;
        }

        .result-card h3 {
            font-size: 24px;
            color: #666;
            margin-bottom: 5px;
        }

        .result-value {
            font-size: 2rem;
            font-weight: 700;
            color: #333;
        }

        .highlight {
            color: #3a86ff !important;
        }

        .result-ps {
            font-weight: 600;
            color: #3a86ff;
        }

        .icon {
            display: inline-block;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            margin-right: 10px;
        }
           @media only screen and (max-width: 1200px) {
             .results-section{
               margin-top: 30px;
             }
        }
         @media only screen and (max-width: 1000px) {
             .result-card h3 {
                font-size: 16px;
             }
             .result-value{
              font-size: 16px;
             }
        }
         @media only screen and (max-width: 768px) {
             .result-card h3 {
                font-size: 20px;
             }
             .result-value{
              font-size: 20px;
             }
        }
        .calculator-left{
            float: left;
            width: 45%;
        }
        .calculator-right{
            float: right;
            width: 45%;
        }
        @media only screen and (max-width: 768px) {
            .calculator-left{
                float: none;
                width: 100%;
            }
            .calculator-right{
                float: none;
                width: 100%;
            }
          }
        .chart-values {
            display: flex;
            justify-content: space-around;
            margin-bottom: 15px;
            text-align: center;
            font-size: 14px;
            font-weight: 600;
        }

        .chart-value-group {
            flex: 1;
        }

        .chart-value-label {
            color: #666;
            margin-bottom: 5px;
        }

        .chart-value {
            color: #333;
        }
        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .calculator-header-grid {
                flex-direction: column;
                gap: 20px;
                    margin-bottom: 0;
                margin-top: 0;
            }
            
            
            .input-section {
                flex-direction: column;
            }
            
            .results-section {
                grid-template-columns: 1fr;
                padding: 15px 7px 0;
            }
        }

/* Vertical Circular Scrolling Styles */
.specialties-section {
    padding: 22px 0 30px;
}

.specialties-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.specialties-header h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
    text-align: left;
}
.specialties-header p {
  font-size: 20px;
  text-align: left;
  margin-bottom: 0;
}
.specialties-header h1 span {
    color: #3a86ff;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

.specialties-carousel-container {
    height: 400px;
    position: relative;
    overflow: hidden;
}

.specialties-carousel {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
}

.specialty-item {
    position: absolute;
    width: 79%;
    padding: 10px;
/*    background-color: #f0f0f0;*/
    border-radius: 8px;
    text-align: center;
    font-size: 24px;
    font-weight: 500;
    color: #333;
    transition: 
        transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1),
        opacity 0.7s ease,
        background-color 0.3s ease;
    transform-origin: center;
    will-change: transform, opacity;
    cursor: default;

border: 1px solid var(--Overlays-Default, #00000033)

}
@media only screen and (max-width: 768px) {
  .specialty-item {
    width: 100%;
  }
  .specialties-section{
        padding: 40px 0 30px;
  }
}
.specialty-item.active {
    color: #2A2A2A;
    box-shadow: 0 10px 25px rgba(58, 134, 255, 0.3);
border: 1px solid transparent;
  border-radius: 8px;
  /*background: 
    linear-gradient(white, white) padding-box,
    linear-gradient(129.28deg, #003F84 20.38%, #51B76C 71.63%, #51B76C 99.6%) border-box;*/

}

/* Responsive Design */
@media (max-width: 768px) {
    .specialties-grid {
        grid-template-columns: 1fr;
    }
    
    .specialties-header {
        text-align: center;
        margin-bottom: -31px;
    }
    
    .specialties-carousel-container {
        height: 350px;
    }
    
    .specialty-item {
        padding: 15px;
        font-size: 20px;
    }
    .specialties-header h1{
          font-size: 25px;
              text-align: center;
    }
    .specialties-header p{
      text-align: center;
    }
}
/* Mission Section Styles */
.mission-section {
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.mission-grid {
    display: flex;
    align-items: center;
}

.mission-image {
    position: relative;
    display: flex;
    justify-content: center;
    width: 38%;
    height: 440px;
}

.circle-bg {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: url(../img/mission-bg.png) center center no-repeat;
    background-size: 100% 100%; 
}

.circle-bg h1 {
    font-size: 37px;
    width: 53%;
    font-weight: 700;
    color: #333;
    line-height: 1.3;
    margin: 0;
}

.circle-bg span {
    color: #3a86ff;
    display: inline-block;
    position: relative;
}

.mission-content {
    padding-left: 43px;
    width: 49%;
}

.mission-header {
    margin-bottom: 12px;
}
.mission-header img{
      width: 100px;
}
.mission-header h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #333;
    margin: 0 0 10px 0;
}

.mission-tag {
    display: inline-block;
    background-color: #3a86ff;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.mission-text p {
    font-size: 20px;
    line-height: 1.6;
    color: #2A2A2A;
    margin-bottom: 25px;
    font-weight: 500;
}
.mission-text p span{
  color: #3a86ff;
}
.mission-statement {
    font-size: 1.3rem;
    font-weight: 500;
    color: #333;
    line-height: 1.6;
}

#pricing{
      margin-top: 122px;
}
@media (max-width: 768px) {
  #pricing {
  display: none;
  }
}
.price-variations{
    display: flex;
    justify-content: center;
    padding: 17px 0 20px;
    margin-right: 63px;
}
.price-variations *{
  font-size: 10px;
  line-height: 1;
  padding: 12px;
  border-radius: 30px;
  cursor: pointer;
}
.price-variations .price-yearly{
  color: #fff;
  background: #004084;
}
.mission-header-mobile{
  display: none !important;
}
/* Responsive Design */
@media (max-width: 992px) {
    .mission-grid {
        grid-template-columns: 1fr;
    }
    
    .mission-image {
        margin-bottom: 60px;
    }
    
    .circle-bg {
        width: 300px;
        height: 300px;
    }
    
    .circle-bg h1 {
        font-size: 2.2rem;
    }
    
    .mission-content {
        padding-left: 0;
        text-align: center;
        width: 100%;
    }
    .mission-image{
      width: 100%;
      height: auto;
      margin-bottom: 0;
    }
    .mission-header {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
}
@media (max-width: 768px) {
  .mission-grid{
          flex-direction: column;
    }
    .circle-bg{
      background: none;
    }
    .circle-bg h1{
      width: 100%;
    }
     .mission-header {
        display: none;
    }
    .mission-header-mobile{
      display: block !important;
    margin-top: 36px;
    }
}
@media (max-width: 576px) {
    .circle-bg {
        width: auto;
        height: auto;
    }
    
    .circle-bg h1 {
        font-size: 1.8rem;
        padding-bottom: 15px;
    }
    
    .mission-header h2 {
        font-size: 2.2rem;
    }
    
    .mission-text p {
        font-size: 1.1rem;
    }
    
    .mission-statement {
        font-size: 1.2rem;
    }
}


@media (max-width: 1000px) {
  .navbar{
    width: 77%;
  }
}
  @media (max-width: 768px) {
    .navbar {
        width: auto;
        padding: 0;
    }
    
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        background: white;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        z-index: 999;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links li {
        padding: 10px 0;
    }
    
    .nav-links a {
        padding-right: 0;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .navbar .btn {
        margin-left: auto;
    }
}

.calculator-container {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
        }
        #scribers-icon, #time-icon{
           display: flex;
        align-items: center;
        gap: 1px;
        }
        #scribers-icon span, #time-icon span{
           color: #99CAFF;
        }
        .chart-section {
            width: 100%;
            margin-top: 30px;
        }
        .input-group {
            margin-bottom: 20px;
        }
        label {
            display: block;
            margin-bottom: 5px;
            font-weight: bold;
        }
        input {
            width: 100%;
            padding: 8px;
            border: 1px solid #ddd;
            border-radius: 4px;
            box-sizing: border-box;
        }
        .result-card {
            border-radius: 8px;
            padding: 15px;
            margin-bottom: 15px;
            border: 1px solid #CCE5FF;
        }
        .result-card h3{
           color: #004084;
        }
        .result-card-sec{
          display: flex;
          justify-content: space-between;
        }
        .result-card-sec:first-child{
          margin-bottom: 20px;
        }
        .result-value {
            font-size: 32px;
            font-weight: bold;
            color: #2c3e50;
            margin: 10px 0;
        }
          @media only screen and (max-width: 1000px) {
             .result-value{
              font-size: 16px;
             }
        }
           @media only screen and (max-width: 768px) {
             .result-value{
              font-size: 20px;
              margin: 0;
             }
             .result-card-sec p{
              font-size: 12px;
             }
        }
        .highlight {
            color: #004084;
        }
        .chart-container {
            position: relative;
            height: 413px;
            margin-top: 20px;
            width: 100% !important;
        }
        .result-card-sec p {
          color: #96989C;
          text-align: right;
          font-size: 14px;
        }
        .result-card-sec p .result-ps{
          display: block;
          color: #000C1A;
          font-size: 20px;
        }
        .input-result-main{
          border: 1px solid #CCE5FF;
          border-radius: 13px;
          padding: 30px 30px 10px;
          background: linear-gradient(143.65deg, rgb(255 255 255 / 50%) 10%, rgb(240 243 246 / 50%) 50.64%);
        }
        .input-result-main h4{
          text-align: center;
          font-size: 18px;
          margin-bottom: 20px;
        }
        .chart-main{
          display: block;
          gap: 20px;
          border: 1px solid #CCE5FF;
          border-radius: 13px;
          padding: 30px 30px 0;
    background: linear-gradient(143.65deg, rgb(255 255 255 / 50%) 10%, rgb(240 243 246 / 50%) 50%);
        }
          @media only screen and (max-width: 768px) {
             .chart-main {
              margin-top: 0;
                  padding: 18px 7px 0;
            }
            .result-card-sec p{
                  font-size: 12px;
            }
        }
        .results-section{
          flex: 1;
        }
        .divider {
            border-top: 1px solid #eee;
            margin: 30px 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
        }
        th, td {
            border: 1px solid #ddd;
            padding: 8px;
            text-align: left;
        }
        th {
            background-color: #f2f2f2;
        }

.toggle-switch {
      margin-top: 58px;
    }

    .toggle-switch button {
      padding: 8px 16px;
      border: 2px solid #1877f2;
      background: #fff;
      color: #1877f2;
      border-radius: 6px;
      cursor: pointer;
      margin: 0 4px;
      font-weight: bold;
    }

    .toggle-switch button.active {
      background: #1877f2;
      color: #fff;
    }

    .pricing-table {
      display: grid;
      grid-template-columns: 1.2fr repeat(4, 1fr);
      max-width: 1200px;
      margin: 20px auto;
      border-radius: 12px;
      overflow: hidden;
      backdrop-filter: blur(3px);
    background: transparent;
    padding: 10px 18px;
    border: 1px solid #CCE5FF;
    border-radius: 10px;
    }

    .left-column {
      padding: 175px 20px 20px;
    }

    .left-column .feature {
      margin: 28px 0;
      font-size: 16px;
      color: #333;
    }

    .plan {
      padding: 65px 16px 24px;
      text-align: center;
      position: relative;
    }

    .plan.pro {
    color: white;
    background-image: url('../img/price-bg.png');
      background-size: cover; 
      background-repeat: no-repeat;
      background-position: center;;
    border-radius: 15px;
        border-bottom-left-radius: 37px;
    border-bottom-right-radius: 37px;
    }

    .preferred-badge {
      position: absolute;
      top: 10px;
      left: 50%;
      transform: translateX(-50%);
      background: white;
      color: #003F84;
      padding: 4px 10px;
      border-radius: 10px;
      font-size: 11px;
      font-weight: bold;
    }

    .plan h3 {
          margin: 0;
    font-size: 26px;
    color: #004084;
    }

    .price {
      margin: 12px 0;
    }

    .price .yearly,
    .price .monthly {
      font-size: 33px;
      font-weight: bold;
      color: #231D4F;
    }
    .price .yearly span,
    .price .monthly span{
      font-size: 15px;
      font-weight: normal;
      color: #848199;
    }

    .price .monthly {
      display: none;
    }

    .plan .feature-icon {
      margin: 24px 0;
      font-size: 18px;
      
    }
     .plan .feature-icon i{
      color: #51B76C;
    }
    .plan .feature-icon.cross i{
      color: #999999
      
    }
    .plan.pro .feature-icon i{
      color: #fff;
    }
    .plan.pro h3, .plan.pro .price .yearly, .plan.pro .price .monthly, .plan.pro .price .yearly span, .plan.pro .price .monthly span {
      color: #fff;
    }
    .feature-icon .fa-check{
      color: #51B76C;
    }
    .feature-icon .fa-xmark{
      color: #999999;
    }
    .check { color: #51B76C; }
    .cross { color: #ccc; }
    .pro .check,
    .pro .cross {
      color: white;
    }

    .highlight-note {
      font-size: 12px;
      color: #555;
      margin-top: 10px;
    }

    .pro .highlight-note {
      color: #e1f5e5;
    }
    @media (max-width: 1000px) {
      
      .plan .feature-icon {
      font-size: 13px;
    }
    .price .yearly, .price .monthly{
      font-size: 20px;
    }
    .left-column .feature{
          font-size: 11px;
    }
  }

    /* Mobile Pricing Section Styles */
#pricing-mobile {
  background-color: white;
  padding: 40px 0 40px;
  display: none;
}
@media (max-width: 768px) {
  #pricing-mobile {
  display: block;
  }
}
.pricing-heading-mobile {
  text-align: center;
  padding: 0 15px;
  margin-bottom: 30px;
}


.toggle-switch-mobile {
  display: flex;
  justify-content: center;
  background: #f0f0f0;
  border-radius: 30px;
  padding: 5px;
  width: 272px;
  margin: 0 auto;
}

.toggle-switch-mobile button {
  border: none;
  padding: 10px 15px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
  background: transparent;
  color: #848199;
  cursor: pointer;
  transition: all 0.3s ease;
}

.toggle-switch-mobile button.active {
  background: #004084;
  color: white;
}

.pricing-cards-mobile {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0 15px;
}

.pricing-card-mobile {
  position: relative;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    background: transparent;
    padding: 10px 18px 22px;
    border: 1px solid #CCE5FF;
    border-radius: 10px;
     display: flex;
  flex-direction: column;
  height: 100%; /* Or set a min-height if needed */
  position: relative;
    margin-bottom: 30px;
}

.pricing-card-mobile h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #004084;
}

.price-mobile {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #333;
}

.price-mobile span {
  font-size: 1rem;
  font-weight: normal;
}

.features-mobile {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 5px;
}

.feature-mobile {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.95rem;
}

.feature-value {
  font-weight: 600;
  color: #004084;
}

.check {
  color: #51B76C;
}

.cross {
  color: #ff4d4d;
}

.view-features-btn {
  width: 100%;
  padding: 12px;
  background: #E5F2FF;
  color: #004084;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
  margin-top: 10px;
  position: absolute;
    bottom: -30px;
    left: 0;
}

.view-features-btn:hover {
  background: #004084;
  color: #E5F2FF;
}

.all-features {
  animation: fadeIn 0.3s ease;
      line-height: 2.2;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.popular-badge {
  position: absolute;
  top: -10px;
  right: 20px;
  background: #51B76C;
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.pricing-card-mobile.popular {
  background: linear-gradient(143.65deg, #003F84 10.22%, #51B76C 99.64%);
  color: white;
}

.pricing-card-mobile.popular h3,
.pricing-card-mobile.popular .price-mobile,
.pricing-card-mobile.popular .feature-value {
  color: white;
}

.pricing-card-mobile.popular .view-features-btn {
  background: white;
  color: #fff;
  background: linear-gradient(143.65deg, #003F84 10.22%, #51B76C 99.64%);
}

.pricing-card-mobile.popular .view-features-btn:hover {
  background: #004084;
}

.enterprises-contact-mobile {
  margin-top: 40px;
  text-align: center;
  padding: 0 15px;
}

.enterprises-contact-mobile p {
  display: inline-block;
  padding: 10px 15px;
  background: #f7fbff;
  border-radius: 10px;
  font-size: 0.9rem;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.enterprises-contact-mobile p a {
  color: #3396FF;
  text-decoration: none;
}

.enterprises-contact-mobile p span {
  padding: 0 10px;
  color: #ccc;
}

/* Hide monthly prices by default */
.price-mobile .monthly {
  display: none;
}
/* Form Styles */
        .cta-form {
            max-width: 600px;
            margin: 0 auto;
            padding: 2rem;
            background: #fff;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        
        .form-row {
            display: flex;
            gap: 1rem;
        }
        
        .form-group {
            flex: 1;
            margin-bottom: 1.5rem;
        }
        
        label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
            color: #333;
        }
        
        input[type="text"],
        input[type="tel"],
        input[type="email"] {
            width: 100%;
            padding: 0.75rem;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-size: 1rem;
            transition: border-color 0.3s;
        }
        
        input:focus {
            outline: none;
            border-color: #4f46e5;
            box-shadow: 0 0 0 2px rgba(79, 70, 229, 0.2);
        }
        
        .form-checkbox {
            display: flex;
            align-items: center;
            margin: 1.5rem 0;
        }
        
        .form-checkbox input {
            margin-right: 0.75rem;
            margin-top: -5px;
        }
        
        .error-message {
            color: #ff3860;
            font-size: 0.8em;
            margin-top: 0.25rem;
            display: none;
        }
        
       .cta-form .btn {
            display: inline-block;
            padding: 0.75rem 1.5rem;
            border-radius: 8px;
            font-weight: 500;
            text-align: center;
            cursor: pointer;
            transition: all 0.2s ease;
            width: 100%;
            font-size: 1rem;
        }
        
        .cta-form .btn-primary {
            background-color: #4f46e5;
            color: white;
            border: none;
        }
        
       .cta-form .btn-primary:hover {
            background-color: #4338ca;
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
        }
        
        /* Loading Overlay */
        .loading-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(255, 255, 255, 0.8);
            z-index: 9998;
            justify-content: center;
            align-items: center;
        }
        
        .loading-spinner {
            border: 4px solid rgba(0, 0, 0, 0.1);
            border-radius: 50%;
            border-top: 4px solid #4f46e5;
            width: 40px;
            height: 40px;
            animation: spin 1s linear infinite;
        }
        
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        /* Success Modal */
        .modal {
            display: none;
            position: fixed;
            z-index: 9999;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.6);
            backdrop-filter: blur(5px);
            animation: fadeIn 0.3s ease-out;
        }
        
        .modal-content {
            background-color: white;
            margin: 15% auto;
            padding: 2.5rem;
            border-radius: 12px;
            width: 90%;
            max-width: 420px;
            text-align: center;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
            position: relative;
            animation: slideUp 0.4s ease-out;
            border: 1px solid rgba(255,255,255,0.2);
        }
        
        
        .close-modal {
            position: absolute;
            top: 16px;
            right: 20px;
            color: #6b7280;
            font-size: 24px;
            font-weight: 300;
            cursor: pointer;
            transition: all 0.2s ease;
        }
        
        .close-modal:hover {
            color: #4f46e5;
            transform: scale(1.1);
        }
        
        .modal-content h3 {
            color: #111827;
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }
        
        .modal-content p {
            color: #4b5563;
            font-size: 1rem;
            line-height: 1.5;
            margin-bottom: 1.5rem;
        }
        
        .modal-icon {
            width: 60px;
            height: 60px;
            margin: 0 auto 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: #f0fdf4;
            border-radius: 50%;
            border: 2px solid #10b981;
        }
        
        .modal-icon svg {
            width: 30px;
            height: 30px;
            color: #10b981;
        }
        
        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        @keyframes slideUp {
            from { 
                transform: translateY(20px);
                opacity: 0; 
            }
            to { 
                transform: translateY(0);
                opacity: 1; 
            }
        }
        @media only screen and (max-width: 768px) {
      .cta-form-container {
            padding: 10px 14px;
            width: 100%;
      }
      .cta-form{
       background: none;
            border-radius: 0px;
            box-shadow: none;
                    width: 100%;
        display: block;
        padding: 10px;
      }
      .form-row{
        display: block;
      }
}
/* Mobile Video Containers */
.mobile-video-container {
    display: none;
    margin-top: 15px;
    width: 100%;
}

.mobile-video {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 8px;
}
  .pricing-desktop-nav{
      display: block;
    }
    .pricing-mobile-nav{
      display: none;
    }

    /* Default - hide all mobile videos */
.mobile-video-container {
  display: none;
}

/* Show only active mobile video */
.feature-card.active .mobile-video-container {
  display: block;
}

/* Desktop behavior */
@media (min-width: 769px) {
  .mobile-video-container {
    display: none !important;
  }
}


}
/* Show mobile videos on mobile */
@media (max-width: 768px) {
    .mobile-video-container {
        display: block;
    }
    
 .pricing-desktop-nav{
      display: none;
    }
    .pricing-mobile-nav{
      display: block;
    }
   
}

/* Desktop Styles */
@media (min-width: 769px) {
    .mobile-video-container {
        display: none !important;
    }
}
/* Desktop Styles */
@media (max-width: 769px) {
    .demo-interfaces-desktop {
        display: none !important;
    }
}


