    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Poppins', sans-serif;
    }

    body {
      background: #f5fbff;
      color: #333;
      line-height: 1.6;
    }
    /* Header */
    header {
      background: #fff;
      padding: 16px 40px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      display: flex;
      justify-content: space-between;
      align-items: center;
      position: sticky;
      top: 0;
      z-index: 100;
    }

    .logo {
      font-size: 22px;
      font-weight: 700;
      color: #0077cc;
      text-decoration: none;
    }

    nav ul {
      list-style: none;
      display: flex;
      gap: 20px;
      align-items: center;
      margin:0;
    }

    nav ul li a {
      text-decoration: none;
      font-weight: 700 !important;
      color: #333;
      transition: color 0.3s ease;
    }

    nav ul li a:hover {
      color: #0077cc;
    }

    /* Buttons in Header */
    .btn {
      padding: 8px 16px;
      border-radius: 6px;
      font-weight: 600;
      text-decoration: none;
      transition: 0.2s ease;
    }

    .btn-primary {
      background: #0077cc;
      color: #fff !important;
    }

    .btn-primary:hover {
      background: #005fa3;
    }

    .btn-outline {
      border: 2px solid #0077cc;
      color: #0077cc !important;
      background: transparent;
    }

    .btn-outline:hover {
      background: #0077cc;
      color: #fff !important;
    }

    /* home Section */
    #home {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 40px;
      padding: 120px 60px;
      background: linear-gradient(180deg, #f5fbff 0%, #ffffff 100%);
    }

    #home .home-text {
      flex: 1;
      text-align: left;
    }

    #home h2 {
      font-size: 32px;
      font-weight: 700;
      color: #222;
      margin-bottom: 20px;
    }
    #home h2 span{
       white-space: nowrap;
    }
    #home p {
      font-size: 18px;
      max-width: 600px;
      margin-bottom: 30px;
      color: #555;
    }

    .cta-btn {
      background: #0077cc;
      color: #fff;
      padding: 14px 28px;
      border-radius: 6px;
      text-decoration: none;
      font-size: 16px;
      font-weight: 600;
      transition: background 0.3s ease;
    }

    .cta-btn:hover {
      background: #005fa3;
    }

    #home .home-image {
      flex: 1;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    #home .home-image img {
      max-width: 100%;
      height: auto;
    }

    /* Footer */
    footer {
      background: #0f172a;
      color: #eee;
      padding: 40px 20px 20px;
      margin-top: 0;
    }

    .footer-container {
      margin: auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 30px;
      text-align: left;
    }

    .footer-links h4,
    .footer-contact h4,
    .footer-address h4 {
      color: #fff;
      margin-bottom: 12px;
    }

    .footer-links ul {
      list-style: none;
      padding: 0;
    }

    .footer-links ul li {
      margin-bottom: 8px;
    }

    .footer-links ul li a {
      text-decoration: none;
      color: #bbb;
      font-size: 14px;
      transition: color 0.3s ease;
    }

    .footer-links ul li a:hover {
      color: #0077cc;
    }

    .footer-contact p,
    .footer-address p {
      font-size: 14px;
      margin: 6px 0;
      color: #bbb;
    }

    .footer-bottom {
      border-top: 1px solid #333;
      margin-top: 30px;
      padding-top: 15px;
      text-align: center;
      font-size: 13px;
      color: #aaa;
    }

    /* Responsive */
    @media (max-width: 900px) {
      #home {
        flex-direction: column;
        text-align: center;
        padding: 120px 20px 100px 20px;
      }

      #home .home-text {
        text-align: center;
      }

      nav ul {
        gap: 12px;
      }

      .footer-container {
        text-align: center;
        grid-template-columns: 1fr;
      }
    }

    /* About Section */
    .about-container {
      margin: 30px auto;
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      padding: 40px;
    }

    .about-container h1 {
      font-size: 28px;
      color: #0077cc;
      margin-bottom: 20px;
      font-weight: 700;
    }

    .about-container h2 {
      font-size: 20px;
      margin-top: 30px;
      margin-bottom: 12px;
      font-weight: 600;
      color: #333;
    }

    .about-container p,
    .about-container li {
      font-size: 15px;
      margin-bottom: 12px;
      color: #444;
    }

    .about-container ul {
      margin-left: 20px;
    }

    /* Contact + Feedback Layout */
    .wrapper {
      max-width: 1100px;
      margin: 60px auto;
      display: flex;
      gap: 30px;
      padding: 0 20px;
      align-items: stretch;
    }

    .contact-section {
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .feedback-section {
      flex: 0 0 40%;
      background: #fff;
      padding: 22px;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      display: flex;
      flex-direction: column;
      height:100%;
    }

    .section h2 {
      font-size: 24px;
      margin-bottom: 20px;
      font-weight: 700;
      color: #0077cc;
    }

    .contact-info {
      flex: 1;
    }

    .contact-item {
      margin: 12px 0;
      font-size: 15px;
      display: flex;
      align-items: flex-start;
      gap: 8px;
    }

    .contact-item span {
      font-weight: 600;
    }

    /* Google Map */
    .map {
      margin-top: auto;
      border: 2px solid #0077cc;
      border-radius: 10px;
      overflow: hidden;
      height: 310px;
    }

    .map iframe {
      width: 100%;
      height: 100%;
      border: 0;
    }

    /* Feedback Form */
    form {
      flex: 1;
      display: flex;
      flex-direction: column;
    }

    label {
      display: block;
      margin-bottom: 6px;
      font-weight: 500;
    }

    input,
    textarea {
      width: 100%;
      padding: 10px;
      margin-bottom: 15px;
      border: 1px solid #ccc;
      border-radius: 6px;
      font-size: 14px;
    }

    textarea {
      resize: vertical;
      min-height: 100px;
    }

    button {
      background: #0077cc;
      color: #fff;
      padding: 12px 20px;
      border: none;
      border-radius: 6px;
      cursor: pointer;
      font-weight: 600;
      transition: background 0.3s ease;
      width: 100%;
      margin-top: auto;
    }

    button:hover {
      background: #005fa3;
    }

    /* FAQ Section */
    .faq-container {
      margin: 30px auto;
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      padding: 40px;
    }

    .faq-container h1 {
      font-size: 28px;
      color: #0077cc;
      margin-bottom: 20px;
      font-weight: 700;
    }

    .faq-item {
      margin-bottom: 20px;
    }

    .faq-item h2 {
      font-size: 18px;
      font-weight: 600;
      margin-bottom: 8px;
      color: #333;
    }

    .faq-item p,
    .faq-item ul {
      font-size: 15px;
      color: #444;
      margin-bottom: 8px;
    }

    .faq-item ul {
      margin-left: 20px;
    }

    /* Container */
 
    .header-text {
      text-align: center;
      margin-bottom: 40px;
    }

    .header-text h1 {
      font-size: 25px;
      color: #0077cc;
      font-weight: 700;
      margin-bottom: 10px;
    }

    .header-text p {
      font-size: 16px;
      color: #666;
    }

    .grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 24px;
    }

    .card {
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      padding: 20px;
      transition: transform 0.2s ease;
      height:100%;
    }

    .card:hover {
      transform: translateY(-5px);
    }

    .icon {
      font-size: 26px;
      color: #0077cc;
      margin-bottom: 12px;
    }

    .title {
      font-size: 22px;
      font-weight: 700;
      margin-bottom: 8px;
      color: #0077cc;
    }

    .desc {
      font-size: 16px;
      color: #555;
      line-height: 1.5;
    }

    /* Start Free Trial Button */
    .cta {
      text-align: center;
      margin-top: 40px;
    }

    .cta a {
      background: #0077cc;
      color: #fff;
      padding: 14px 28px;
      font-size: 16px;
      font-weight: 600;
      text-decoration: none;
      border-radius: 8px;
      transition: background 0.3s ease;
      display: inline-block;
    }

    .cta a:hover {
      background: #005fa3;
    }

    /* Pricing Section */
    .pricing-section {
        background-color:#07c;
      padding: 120px 10px 120px 10px;
    }

    .pricing-header {
      text-align: center;
      margin-bottom: 18px;
    }

    .pricing-header h2 {
      color: #fff;
      font-size: 28px;
      font-weight: 700;
      margin-bottom: 6px;
    }

    .pricing-header p {
      color: #fff;
      font-size: 16px;
    }


    .plan {
      background: #fff;
      border-radius: 12px;
      padding: 22px 18px;
      box-shadow: 0 6px 20px rgba(16, 24, 40, 0.08);
      display: flex;
      flex-direction: column;
      gap: 12px;
      position: relative;
      transition: transform .18s ease, box-shadow .18s ease;
      text-align: center;
      align-items: center;
      margin-bottom:1.5rem;
    }

    .plan:hover {
      transform: translateY(-6px);
    }


    /* Offer badges */
    .offer {
      position: absolute;
      top: -10px;
      right: -10px;
      color: #fff;
      padding: 6px 12px;
      font-size: 13px;
      font-weight: 700;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .offer.starter {
      background: #ff9800;
    }

    .offer.basic {
      background: #abaa45;
    }

    .offer.standard {
      background: #28a745;
    }

    .offer.growth {
      background: #9c27b0;
    }

    .offer.premium {
      background: #f0ad4e;
    }

    /* Best Value ribbon */
    .ribbon {
      position: absolute;
      top: -10px;
      left: -10px;
      background:red;
      color: #fff;
      padding: 6px 12px;
      border-radius: 8px;
      font-size: 12px;
      font-weight: 700;
      box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    }

    .plan-name {
      color: #0077cc;
      font-weight: 900;
      font-size: 22px;
      text-transform:uppercase;
    }

    .plan-duration {
      color: #666;
      font-size: 16px;
    }

    /* Price */
    .price {
      font-size: 20px;
      font-weight: 600;
      margin-top: 6px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 4px;
    }

    .price .new-price {
      color: #0077cc;
      font-size: 26px;
      font-weight: 700;
    }

    .price .old-price {
      color: #888;
      font-size: 16px;
      font-weight: 600;
      padding: 2px 8px;
      border-radius: 12px;
      background: rgba(255, 0, 0, 0.1);
      text-decoration: line-through;
      text-decoration-thickness: 2px;
      text-decoration-color: red;
    }

    .price small {
      display: block;
      font-size: 12px;
      color: #666;
      margin-top: 4px;
    }

    .save-label {
      display: block;
      font-size: 16px;
      font-weight: 600;
      color: #28a745;
      margin-top: 2px;
    }

    /* Features */
    #features,#contact{
        padding:120px 10px 120px 10px;
    }
    #contact{
         padding:120px 20px 120px 20px;
    }
    .features-list {
      margin-top: 8px;
      color: #555;
      font-size: 16px;
      line-height: 1.6;
      list-style: none;
      padding: 0;
      max-width: 300px;
      text-align: center;
    }

    .features-list li {
      margin-bottom: 12px;
      position: relative;
      padding-left: 24px;
      text-align: left;
    }

    .features-list li::before {
      content: "✔";
      color: #28a745;
      font-weight: bold;
      position: absolute;
      left: 0;
      top: 0;
    }

    /* Button */
    .cta {
      margin-top: 12px;
      text-align: center;
    }

    .btn-plan {
      display: inline-block;
      background: #0077cc;
      color: #fff;
      padding: 10px 18px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: 600;
      transition: background .2s ease;
    }

    .btn-plan:hover {
      background: #005fa3;
    }

    /* Privacy Content */
    .privacy-container {
      margin: 30px auto;
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      padding: 40px;
    }

    .privacy-container h1 {
      font-size: 28px;
      color: #0077cc;
      margin-bottom: 20px;
      font-weight: 700;
    }

    .privacy-container h2 {
      font-size: 20px;
      margin-top: 30px;
      margin-bottom: 12px;
      font-weight: 600;
      color: #333;
    }

    .privacy-container p,
    .privacy-container li {
      font-size: 15px;
      margin-bottom: 12px;
      color: #444;
    }

    .privacy-container ul {
      margin-left: 20px;
    }

    /* Policy Content */
    .policy-container {
      margin: 30px auto;
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      padding: 40px;
    }

    .policy-container h1 {
      font-size: 28px;
      color: #0077cc;
      margin-bottom: 20px;
      font-weight: 700;
    }

    .policy-container h2 {
      font-size: 20px;
      margin-top: 30px;
      margin-bottom: 12px;
      font-weight: 600;
      color: #333;
    }

    .policy-container p,
    .policy-container li {
      font-size: 15px;
      margin-bottom: 12px;
      color: #444;
    }

    .policy-container ul {
      margin-left: 20px;
    }

     
    /* Terms Content */
    .terms-container {
      margin: 30px auto;
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      padding: 40px;
    }

    .terms-container h1 {
      font-size: 28px;
      color: #0077cc;
      margin-bottom: 20px;
      font-weight: 700;
    }

    .terms-container h2 {
      font-size: 20px;
      margin-top: 30px;
      margin-bottom: 12px;
      font-weight: 600;
      color: #333;
    }

    .terms-container p,
    .terms-container li {
      font-size: 15px;
      margin-bottom: 12px;
      color: #444;
    }
    
    .terms-container ul {
      margin-left: 20px;
    }
    .text-primary,.btn-link{
        color:#0077cc !important;
    }
    .btn-outline-primary.active{
        background: #0077cc !important;
    }
    .btn-outline-primary{
        border-color: #0077cc !important;
        color:#0077cc;
    }
    .btn-outline-primary:hover,.btn-outline-primary:focus {
        background: #0077cc !important;
    }
    @media (max-width: 767px) {
        #home h2{
            font-size:25px;
        }
        header{
            padding: 16px 15px;
             align-items:flex-start;
            
        }
        .navbar{
            position:static;
        }
         nav ul {
          flex-direction: column;
          gap: 10px;
          text-align: center;
          padding: 0;
        }
        .navbar-collapse {
             border-top:1px solid #ccc;
          position: absolute;
          width: 100%;
          top: 85px;
          left:0;
          background-color: rgb(255, 255, 255);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
          padding:10px 0 20px;
        }
        nav ul li a {
          padding: 10px 0;
          font-size: 16px;
          font-weight:700;
        }
    
        .navbar-toggler-icon {
          background-color: #0077cc; /* Customize toggle button */
        }
        .navbar .navbar-toggler .navbar-toggler-icon,.navbar .navbar-toggler .navbar-toggler-icon:hover{
            background-color:transparent;
        }
         
    }
    
     

     

    @media(max-width:900px){
      .terms-container {padding:20px;}
 
    }
  