/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
   
    text-align: center;
    color: white;
    margin: 0;
    padding: 0;
}

/* Container */

.container-1{
    background: white;
    width: 100%;
    max-width: 900px;
    margin: 20px auto;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}


.back{
    background: linear-gradient(to bottom, #0052D4, #4364F7);
    
    padding:10px;
}

/* Tabs */
.tabs {
    display: flex;
    justify-content: space-between;
    border-bottom: 2px solid #ddd;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.tab {
    flex: 1;
    text-align: center;
    padding: 10px;
    cursor: pointer;
    font-weight: 600;
    color: #555;
    transition: 0.3s;
}

.tab:hover {
    background: #f5f5f5;
}

.tab.active {
    color: #0052D4;
    border-bottom: 3px solid #0052D4;
}

/* Input Wrapper */
.input-wrapper {
    position: relative;
    width: 100%;
    margin-bottom: 15px;
}

/* Input Fields (Quiz Title & Dropdown) - Same Size */
.input-field,
.dropdown {
    width: 100%;
    height: 50px; /* Same height */
    padding: 10px;
    padding-right: 40px; /* Space for icon */
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    background-color: #f8f8f8;
    appearance: none;
    box-sizing: border-box; /* Prevents padding from affecting size */
}

/* Material UI Edit Icon (Right Side of Input) */
.input-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: #666;
    cursor: pointer;
}

/* Add Question Button */
.add-btn {
    width: 100%;
    background: linear-gradient(to right, #ff416c, #ff4b2b);
    color: white;
    font-size: 1rem;
    font-weight: 600;
    padding: 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin: 20px 0;
    transition: 0.3s;
}

.add-btn:hover {
    opacity: 0.9;
}

/* Buttons */
.buttons {
    display: flex;
    justify-content: space-between;
}

.btn {
    flex: 1;
    padding: 12px;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 5px;
    margin: 0 5px;
    transition: 0.3s;
}

/* Preview Button */
.preview {
    background: linear-gradient(to right, #00c6ff, #0072ff);
    color: white;
}

.preview:hover {
    opacity: 0.9;
}

/* Save Quiz Button */
.save {
    background: linear-gradient(to right, #957DCD, #7D5FB2);
    color: white;
}

.save:hover {
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        width: 95%;
    }

    .tabs {
        flex-wrap: wrap;
    }

    .tab {
        flex: 1 1 30%;
        font-size: 0.9rem;
    }

    .buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        margin: 5px 0;
    }

    h1 {
        font-size: 1.5rem;
    }

    p {
        font-size: 1rem;
    }

}
/* Custom Modal */
.custom-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%); /* Centers modal dynamically */
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px; /* Ensures responsiveness on smaller screens */
}

/* Modal Content */
.custom-modal-content {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    width: 90%; /* Adjusts width dynamically */
    max-width: 400px; /* Ensures it doesn't get too wide */
    position: relative;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
}


/* Close Button */
.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: black;
}

.close-btn:hover {
    color: red;
}

/* Responsive Adjustments */
@media (max-width: 480px) {
    .custom-modal-content {
        width: 95%; /* More space for smaller screens */
        padding: 15px;
    }
}


/* Modal Buttons */
.list-group-item {
    display: flex;
    align-items: center;
    padding: 10px;
    border: none;
    cursor: pointer;
    background: #f8f9fa;
    margin: 5px 8px;
    border-radius: 5px;
}

.list-group-item:hover {
    background: #e2e6ea;
}


/* Close Button */
.close {
    color: #aaa;
    float: right;
    font-size: 24px;
    cursor: pointer;
}

.close:hover {
    color: red;
}

/* Question Type Sections */
h3 {
    font-size: 1rem;
    color: #0052D4;
    margin-top: 10px;
    border-bottom: 2px solid #ddd;
    padding-bottom: 5px;
}

/* Options */
.option {
    display: flex;
    align-items: center;
    padding: 10px;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s;
}

.option i {
    font-size: 20px;
    margin-right: 10px;
    color: #0052D4;
}

.option:hover {
    background: #f5f5f5;
}

/* Responsive Design */
@media (max-width: 600px) {
    .modal-content {
        width: 95%;
    }

    .option {
        font-size: 0.9rem;
    }
}


.question-container {
    background: #f5f5f5;
    padding: 10px;
    margin-top: 10px;
    border-radius: 5px;
}

.question-input, .answer-input {
    width: 100%;
    padding: 8px;
    margin: 5px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.add-answer {
    background: #0072ff;
    color: white;
    padding: 8px;
    border: none;
    cursor: pointer;
    margin-top: 5px;
}


/* Style for labels */
.form-label {
    color: black;
    text-align: left;
    display: block; /* Ensures labels appear on a new line */
    font-weight: 600;
    font-size: 15px;
}


.modal-backdrop.show {
    opacity:0 !important;
}


.option-wrapper {
    position: relative;
}

.option-actions {
    position: absolute;
    bottom: -20px;
    right: 5px;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
}

.correct-checkbox {
    margin: 0;
    cursor: pointer;
}

.correct-label {
    color: green;
    cursor: pointer;
    font-size: 12px;
}

.remove-option {
    color: red;
    cursor: pointer;
    font-size: 16px;
}

.remove-label {
    color: red;
    cursor: pointer;
    font-size: 12px;
}

/* Hover effects */
.correct-label:hover, .remove-label:hover {
    font-weight: bold;
    transform: scale(1.1);
}

.custom-modal .modal-title, 
.custom-modal h6 {
    color: black !important;
}
.custom-modal .list-group-item i {
    color: blue !important;
}




/* section 1 */

h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #333;
  }

  .dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
  }

  .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
  }

  .dot.blue { background-color: #003f7d; }
  .dot.cyan { background-color: #00cfd3; }
  .dot.red { background-color: #f4084a; }

  .timeline {
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 30px;
  }

  .box {
    flex: 1 1 300px;
    max-width: 350px;
    padding: 50px 25px;
    border: 3px solid;
    border-radius: 20px;
    background-color: #fff;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .box:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
  }

  .box h3 {
    font-size: 20px;
    margin: 15px 0 10px;
    color: #222;
    border-bottom: 2px solid transparent;
    display: inline-block;
    transition: border-color 0.3s ease;
  }

  .box.blue:hover h3 { border-color: #003f7d; }
  .box.cyan:hover h3 { border-color: #00cfd3; }
  .box.red:hover h3 { border-color: #f4084a; }

  .box p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
  }

  .circle {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 20px;
    margin: 0 auto 15px;
  }

  .blue { border-color: #003f7d; color: #003f7d; }
  .cyan { border-color: #00cfd3; color: #00cfd3; }
  .red { border-color: #f4084a; color: #f4084a; }

  @media (max-width: 992px) {
    .timeline {
      flex-direction: row;
      justify-content: center;
    }
  }

  @media (max-width: 768px) {
    .timeline {
      flex-direction: column;
      align-items: center;
    }

    .box {
      width: 100%;
      max-width: 90%;
    }
  }

  .top-margin{
    margin-top: 30px;
  }

  /* section 2 */
  .custom-container {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    gap: 40px;
    align-items: center;
    margin: 30px 30px;
  }
  
  .image-container {
    flex: 1 1 500px;
    max-width: 600px;
  }
  
  .image-container img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
  }
  
  h2.heading {
    font-size: 32px;
    margin-bottom: 25px;
    color: #333;
    text-align: left;
  }
  
  .text-container {
    flex: 1 1 400px;
    max-width: 600px;
    display: flex;
    align-items: flex-start;
  }
  
  .text-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 10px;
  }
  
  .text-content h2 {
    font-size: 30px;
    font-weight: 500;
    color: #000;
    margin-bottom: 20px;
    text-align: left;
  }
  
  .text-content p {
    font-size: 14px;
    line-height: 1.8;
    color: #555;
    max-width: 100%;
    text-align: left;
    letter-spacing: 0.3px;
  }
  
  .btn-container {
    margin-top: 10px;
    text-align: left;
  }
  
  .btn-container button {
    background-color: #007bff;
    color: white;
    padding: 12px 24px;
    font-size: 1rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-align: left;
  }
  
  .btn-container button:hover {
    background-color: #0056b3;
  }
  
  /* Responsive styling */
  @media (max-width: 768px) {
    .custom-container {
      flex-direction: column;
      gap: 20px;
      margin: 20px 15px;
    }
  
    .text-container {
      max-width: 100%;
      padding: 0 10px;
      align-items: flex-start;
    }
  
    .text-content h2 {
      font-size: 1.75rem;
      line-height: 1.3;
      margin-bottom: 16px;
    }
  
    .text-content p {
      font-size: 1rem;
      line-height: 1.7;
    }
  
    .btn-container {
      text-align: left;
      margin-top: 15px;
    }
  
    .btn-container button {
      width: 100%;
      font-size: 1rem;
      padding: 10px 18px;
    }
  }



  /* cta */

  .cta-box {
    background-color: #6b3fa0;
    color: white;
    border-radius: 25px;
    padding: 60px 30px;
    text-align: center;
    max-width: 1000px;
    margin: 60px auto;
  }

  .cta-box h2 {
    font-weight: 700;
    font-size: 2rem;
  }

  .highlight {
    color: #ff5f84;
  }

  .cta-buttons .btn {
    background-color: #ff5f84;
    border: none;
    color: white;
    padding: 12px 30px;
    margin: 10px;
    border-radius: 10px;
    font-weight: 600;
    transition: background-color 0.3s ease;
  }

  .cta-buttons .btn:hover {
    background-color: #ff3f6c;
  }

  @media (min-width: 768px) {
    .cta-box h2 {
      font-size: 2.5rem;
    }
  }

  .footer {
    background-color: #0654d7;
    color: white;
    padding: 40px 0 20px;
    text-align: center;
  }
  
  .footer .social-icons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
  }
  
  .footer .social-icons a {
    display: inline-block;
    color: #0654d7;
    background: white;
    width: 45px;
    height: 45px;
    line-height: 45px;
    border-radius: 50%;
    text-align: center;
    font-size: 20px;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }
  
  .footer .social-icons a:hover {
    background-color: #ffffff;
    color: #003cb3;
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  }
  
  .footer .footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 15px;
  }
  
  .footer .footer-links a {
    color: white;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .footer .footer-links a:hover {
    color: #cce3ff;
    text-decoration: underline;
  }
  
  .footer .copyright {
    margin-top: 15px;
    font-size: 14px;
    opacity: 0.85;
  }
  
  /* Responsive Tweaks */
  @media (max-width: 576px) {
    .footer .social-icons a {
      width: 40px;
      height: 40px;
      line-height: 40px;
      font-size: 18px;
    }
  
    .footer .footer-links {
      flex-direction: column;
      gap: 10px;
    }
  
    .footer .footer-links a {
      font-size: 16px;
    }
  
    .footer {
      padding: 30px 10px 15px;
    }
  }

  /* navigation */

  .btn1{
    
    padding: 5px 12px;
    border: none;
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 5px;
    margin: 0 5px;
    transition: 0.3s;
    color:#0553d6;
}

  
.btn-pink {
  background-color: #0553d6;
  color: white;
  font-weight: 600;
  border-radius: 4px;
  padding: 12px;
  transition: all 0.3s ease-in-out;
  text-align: center;
}

.btn-pink:hover {
  background-color: #0553d6;
  color: white;
}

.offcanvas {
  width: 280px;
}

.list-group-item {
  border: none;
  font-size: 16px;
  padding: 14px 18px;
}

.list-group-item .nav-link {
  color: #212529;
  font-weight: 500;
  text-decoration: none;
}

.list-group-item .nav-link:hover {
  color: #0654d7;
}

  /* Sticky Navbar */
  .custom-navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 18px 20px;
    background:white;
    transition: all 0.3s ease;
  }
  
  .custom-navbar.scrolled {
    background: white;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  }
  
  .navbar-brand img {
    height: 35px;
  }
  
  /* Toggler Styling */
  .navbar-toggler {
    border: none;
    background: transparent;
    font-size: 1.4rem;
    color: #007bff !important;
  }
  
  /* Navigation Links */
  .navbar-nav {
    gap: 15px;
  }
  
  .nav-link {
    color: black;
    font-weight: 600;
    transition: color 0.3s ease;
  }
  
  .custom-navbar.scrolled .nav-link {
    color: black;
  }
  
  .nav-link:hover {
    color: #007bff;
  }
  
  /* Prevent Content Overlap */
  body {
    padding-top: 80px;
  }
  
  /* Mobile View */
  @media (max-width: 992px) {
    .custom-navbar {
      background: white;
      box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    }
  
    .navbar-toggler {
      color: #007bff;
    }
  
    .navbar-collapse {
      background: white;
      padding: 15px;
      border-radius: 10px;
      animation: slideDown 0.4s ease forwards;
    }
  
    .navbar-nav {
      flex-direction: column;
      gap: 10px;
    }
  
    .nav-link {
      color: black !important;
      font-size: 18px;
    }
  
    .nav-link.btn {
      width: 80%;
      margin: 10px auto;
    }
  
    @keyframes slideDown {
      from {
        opacity: 0;
        transform: translateY(-10px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
  }
  
  /* Hide the default checkbox */
.menu-toggle-checkbox {
  display: none;
}

/* Style for the mobile menu icon */
.menu-icon {
  cursor: pointer;
  font-size: 1.5rem;
}

/* Hidden by default */
.mobile-menu {
  display: none;
  position: absolute;
  top: 70px; /* Adjust based on navbar height */
  right: 0;
  width: 100%;
  background: white;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  z-index: 999;
  animation: slideDown 0.4s ease forwards;
}

/* Show menu when checkbox is checked */
.menu-toggle-checkbox:checked + .menu-icon + .mobile-menu {
  display: block;
}

/* Smooth drop effect */
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

         
  /*contact  */


  .contact-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 2rem;
  }
  .contact-info {
    padding: 2rem;
    color: #000;
  }
  .contact-form {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    width: 100%;
    color: #000;
  }
  .form-control,
  .form-select {
    border-radius: 0.5rem;
    color: #000;
  }
  .form-label {
    font-weight: 500;
    color: #000;
  }
  .form-section {
    margin-bottom: 1rem;
  }
  .btn-dark {
    background-color: #333;
    border-color: #333;
  }
  .flag-label {
    display: flex;
    align-items: center;
    margin-top: 1rem;
    font-weight: 600;
    color: #000;
  }
  .flag-label img {
    width: 24px;
    height: 24px;
    margin-right: 8px;
  }
  .contact-info p, .contact-info div {
    color: #555;
    margin-bottom: 0.5rem;
  }
  .icon-label {
    display: flex;
    align-items: center;
    margin-top: 0.75rem;
  }
  .icon-label img {
    width: 20px;
    height: 20px;
    margin-right: 8px;
  }

/* pricing table */
.pricing-title {
  text-align: center;
  margin-bottom: 3rem;
}

.pricing-title h2 {
  font-weight: 700;
  font-size: 2rem;
  color: #1f2937;
}

.pricing-title p {
  color: #6b7280;
  font-size: 0.95rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* table container */
.table-responsive {
  background: #f9fafb;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  padding: 1.5rem;
}

table {
  margin: 0;
  width: 100%;
  border-collapse: collapse;
}

thead th {
  background-color: #e5e7eb;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 1.85rem;
  padding: 1.25rem;
  color: #374151;
  border-bottom: 1px solid #d1d5db;
}

.plan-badge {
  display: inline-block;
  padding: 0.4rem 0.8rem;
  border-radius: 9999px;
  font-weight: 500;
  font-size: 0.8rem;
  color: #fff;
}

.starter { background-color: #def7ec; color: #046c4e; }
.business { background-color: #e0f2fe; color: #0369a1; }
.professional { background-color: #ede9fe; color: #6b21a8; }
.premium { background-color: #fff7ed; color: #c2410c; }

td, th {
  text-align: center;
  vertical-align: middle;
  padding: 1rem;
  font-size: 0.9rem;
  color: #4b5563;
}

td:first-child {
  text-align: left;
  font-weight: 600;
  background-color: #f3f4f6;
  color: #111827;
}

.price {
  font-size: 1rem;
  font-weight: 600;
  color: #1f2937;
}

.btn-select {
  padding: 0.4rem 1.25rem;
  border-radius: 9999px;
  font-weight: 500;
  font-size: 0.85rem;
  border: none;
  color: #fff;
  background-color: #3b82f6;
  transition: background 0.3s ease, transform 0.2s ease;
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.2);
}

.btn-select:hover {
  background-color: #2563eb;
  transform: translateY(-1px);
}

.tick {
  color: #10b981;
  font-size: 1.1rem;
}

.cross {
  color: #ef4444;
  font-size: 1.1rem;
}

.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

table {
  min-width: 900px; /* Force horizontal scroll on small screens */
}

.policy-container h1,
.policy-container h2 {
  color: #000;
}

.policy-container h1 {
  border-bottom: 2px solid #ddd;
  padding-bottom: 10px;
}

.policy-container p,
.policy-container ul,
.policy-container li {
  color: #555;
}


