 body {
            font-family: 'Poppins', sans-serif;
           
          
        }


        /* header */

        /* Header */
      .site-header {
        background-color: #005a9e;
        padding: 15px 0;
        position: sticky;
        top: 0;
        z-index: 1000;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
      }
      .header-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
      }
      .site-logo img {
        width: 150px;
        height: auto;
        vertical-align: middle;
      }
      .header-right {
        display: flex;
        align-items: center;
        gap: 20px;
      }
      .main-navigation ul {
        margin: 0;
        padding: 0;
        list-style: none;
        display: flex;
        gap: 25px;
      }
      .main-navigation a {
        color: white;
        font-weight: 600;
        padding: 5px 0;
        position: relative;
      }
      .main-navigation a:hover {
        text-decoration: none;
      }

      /* Desktop Dropdown Menu */
      .desktop-nav .menu-item-has-children {
        position: relative;
      }
      .desktop-nav .menu-item-has-children > a::after {
        content: "▼";
        font-size: 0.7em;
        margin-left: 8px;
        display: inline-block;
      }
      .desktop-nav .sub-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        background-color: #005a9e;
        list-style: none;
        padding: 10px;
        margin: 0;
        border-radius: 5px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        min-width: 200px;
      }
      .desktop-nav .menu-item-has-children:hover > .sub-menu {
        display: block;
      }
      .desktop-nav .sub-menu li a {
        padding: 8px 12px;
        display: block;
        white-space: nowrap;
      }
      .desktop-nav .sub-menu li a:hover {
        background-color: rgba(255, 255, 255, 0.1);
      }

      /* Header Buttons */
      .header-buttons {
        display: flex;
        gap: 10px;
      }
      .header-buttons .button {
        padding: 8px 16px;
        border-radius: 5px;
      }

      /* Mobile Navigation */
      .menu-toggle {
        display: none;
      }
      .mobile-buttons {
        display: none;
      }
      .mobile-nav {
        display: none;
      }


       /* Responsive Breakpoint */
      @media (max-width: 992px) {
        .header-right {
          display: none;
        }
        .menu-toggle {
          display: block;
          background: none;
          border: none;
          color: white;
          font-size: 30px;
          cursor: pointer;
        }
        .header-container {
          flex-wrap: wrap;
        }
        .mobile-buttons {
          display: flex;
          width: 100%;
          gap: 15px;
          margin-top: 15px;
        }
        .mobile-buttons .button {
          flex: 1;
          border-radius: 50px;
          padding: 12px 10px;
          font-size: 1rem;
          font-weight: bold;
        }
        .mobile-buttons .login-btn {
          background-color: #c82333;
        }
        .mobile-buttons .download-btn {
          background-color: #1b5e20;
        }
        .mobile-nav {
          display: none; /* Hidden by default */
          background-color: #005a9e;
          padding: 10px 0;
        }
        .mobile-nav.open {
          display: block;
        }
        .mobile-nav ul {
          list-style: none;
          padding: 0;
          margin: 0;
          display: flex;
          flex-direction: column;
          align-items: center;
        }
        .mobile-nav li {
          width: 100%;
          text-align: center;
        }
        .mobile-nav a {
          display: block;
          padding: 12px 20px;
          color: white;
          font-weight: 600;
        }
        .mobile-nav .sub-menu {
          display: none;
          background-color: #004a83;
        }
        .mobile-nav .sub-menu a {
          font-weight: normal;
          font-size: 0.9em;
        }
        .mobile-nav .menu-item-has-children.open > .sub-menu {
          display: block;
        }
       
       
      }
      /* Footer */
      .site-footer {
        background-color: #004a83;
        color: #ffffff;
        padding: 20px;
        margin-top: 40px;
        text-align: center;
      }
      .footer-container {
        max-width: 1200px;
        margin: 0 auto;
      }
      .footer-bottom {
        font-size: 0.9em;
      }

        .quic1 {
            max-width: 1200px;
            margin: 40px auto;
            background: rgba(255, 255, 255, 0.95);
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
            backdrop-filter: blur(5px);
            
        }
        .quic1 h1 {
            color: #007bff;
            text-align: center;
            font-size: 2.5em;
            margin-bottom: 20px;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
        }
        .quic1 p {
            font-size: 1.1em;
            color: #444;
            margin-bottom: 20px;
             line-height: 1.8;
        }
        /* Buttons Container */
.buttons-container {
  text-align: center;
  margin: 30px 0;
}

/* Common Button Style */
.button {
  display: inline-block;
  padding: 18px 35px;
  margin: 10px;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

/* Individual Button Colors */
.register-btn {
  background-color: #0a8a3f; /* Green */
  color: #fff;
}

.download-btn {
  background-color: #0072ff; /* Blue */
  color: #fff;
}

.login-btn {
  background-color: #d93025; /* Red */
  color: #fff;
}

/* Hover Effects */
.button:hover {
  transform: translateY(-4px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.25);
  opacity: 0.95;
}

/* Responsive Buttons for Mobile */
@media (max-width: 480px) {
  .button {
    display: block;
    width: 80%;
    margin: 12px auto;
    font-size: 15px;
  }
}

        table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 30px;
            background: #f9f9f9;
            border-radius: 8px;
            overflow: hidden;
        }
        th, td {
            border: 1px solid #ddd;
            padding: 12px;
            text-align: left;
            font-size: 1em;
        }
        th {
            background-color: #007bff;
            color: white;
            font-weight: 600;
        }
        td {
            background-color: #ffffff;
        }
        tr:nth-child(even) td {
            background-color: #e3f2fd;
        }
        @media (max-width: 600px) {
           
            .quic1 {
                padding: 20px;
            }
            h1 {
                font-size: 1.8em;
            }
            .quic3 {
                display: block;
                margin: 10px auto;
                width: 80%;
                text-align: center;
            }
            th, td {
                font-size: 0.9em;
                padding: 8px;
            }
        }

       .quic1 ul {
  margin: 10px 0 18px 25px;
  padding: 0;
  list-style: none; /* remove default bullets */
   line-height: 1.8;
}

.quic1 ul li {
  position: relative;
  margin-bottom: 8px;
  padding-left: 22px; /* space for custom bullet */
  line-height: 1.6;
  color: #222;
  
}

.quic1 ul li::before {
  content: "✔"; /* custom bullet icon */
  position: absolute;
  left: 0;
  top: 0;
  color: #3182ce; /* blue check color */
  font-size: 0.9rem;
}

.quic1 ul li:hover {
  color: #1a202c;
  transform: translateX(2px);
  transition: all 0.2s ease;
}

.quic1 h3 { font-size: 1.5rem; margin: 16px 0 8px; }
    .quic1 h4 { font-size: 1.25rem; margin: 12px 0 6px; }

    .faq-item {
            margin-bottom: 20px;
        }
        .faq-item h3 {
            color: #007bff;
            font-size: 1.3em;
            margin-bottom: 10px;
            font-weight: 600;
        }
        .faq-item p {
            margin: 0 0 10px 10px;
            padding-left: 10px;
            border-left: 3px solid #e3f2fd;
        }
       
       
        @media (max-width: 600px) {
           
            .quic1 {
                padding: 20px;
            }
            h1 {
                font-size: 1.8em;
            }
            h2 {
                font-size: 1.5em;
            }
            .quic3 {
                display: block;
                margin: 10px auto;
                width: 80%;
                text-align: center;
            }
            th, td {
                font-size: 0.9em;
                padding: 8px;
            }
            .faq-item h3 {
                font-size: 1.1em;
            }
            .faq-item p {
                font-size: 1em;
            }
        }


      
.center-img {
  display: block;
  margin: 20px auto; 
  max-width: 300px; 
  height: auto; 
  border-radius: 10px; 
  box-shadow: 0 4px 10px rgba(0,0,0,0.2); 
}

/* Extra small devices (phones) */
@media (max-width: 480px) {
  .center-img {
    width: 90%; 
    margin: 15px auto;
  }
}

/* Tablets */
@media (min-width: 481px) and (max-width: 768px) {
  .center-img {
    width: 80%;
  }
}

/* Laptops & Desktops */
@media (min-width: 769px) {
  .center-img {
    width: 60%;
  }
}

.banner-img {
  display: block;
  margin: 20px auto; 
  max-width: 100%; 
  height: auto; 
  border-radius: 10px; 
  box-shadow: 0 4px 10px rgba(0,0,0,0.2); 
}

/* Extra small devices (phones) */
@media (max-width: 480px) {
  .banner-img {
    width: 90%; 
    margin: 15px auto;
  }
}

/* Tablets */
@media (min-width: 481px) and (max-width: 768px) {
  .banner-img {
    width: 80%;
  }
}

/* Laptops & Desktops */
@media (min-width: 769px) {
  .banner-img {
    width: 60%;
  }
}

/* privacy */
     .priv1 {
            max-width: 1200px;
            margin: 0 auto;
            background: rgba(255, 255, 255, 0.95);
            padding: 30px;
            border-radius: 12px;
          
            backdrop-filter: blur(5px);
        }
        .priv1 h1 {
            color: #19191a;
            text-align: center;
            font-size: 2.5em;
            margin-bottom: 20px;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
        }
        .priv1 h2 {
            color: #121213;
            font-size: 1.8em;
            margin-top: 30px;
            margin-bottom: 15px;
        }
        .priv1 p {
            font-size: 1;
            color: #444;
            margin-bottom: 20px;
            line-height: 1.6;
        }
        .priv1 ul {
            font-size: 1em;
            color: #444;
            margin-bottom: 20px;
            padding-left: 20px;
             line-height: 1.6;
        }
        .priv1 li {
            margin-bottom: 10px;
        }
        a {
            color: #007bff;
            text-decoration: none;
        }
        .priv1 a:hover {
            text-decoration: underline;
        }
        .priv2 {
            margin-bottom: 20px;
            padding-left: 10px;
            border-left: 3px solid #e3f2fd;
        }
        @media (max-width: 600px) {
          
            .priv1 {
                padding: 20px;
            }
            .priv1 h1 {
                font-size: 1.8em;
            }
            .priv1 h2 {
                font-size: 1.5em;
            }
            .priv1 p, ul, li {
                font-size: 1em;
            }
        }
