html{
  user-select: none !important;
}
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1; 
  border-radius: 5px;
}

::-webkit-scrollbar-thumb {
  background-color: #008672 !important; 
  border-radius: 5px;
  border: 2px solid #f1f1f1; 
}

::-webkit-scrollbar-thumb:hover {
  background-color: #00251f;
}


html {
  scrollbar-width: thin; 
  scrollbar-color: #008672 #f1f1f1; 
}



.navbar {
  
  padding: 1rem 1rem;
}
body {
  font-family: "Poppins", sans-serif !important;
}
.navbar-brand img {
  height: 40px;
}

.navbar-nav .nav-link {
  color: #333;
  font-weight: 500;
  margin-right: 0.5rem;
  display: flex;
  align-items: center;
}

.navbar-nav .nav-link .material-icons {
  font-size: 18px;
  margin-left: 4px;
}

.btn-consult {
  background-color: #ff4500 !important;
  color: white;
  border-radius: 8px;
  padding: 10px 20px;
  font-weight: 600;
  transition: background-color 0.3s;
}

.btn-consult:hover {
  background-color: #e03e00 !important;
  color: white !important;
}

.btn-signin {
  border: 2px solid #dee2e6 !important;
  color: #333 !important;
  background-color: transparent !important;
  border-radius: 8px !important;
  padding: 10px 20px !important;
  font-weight: 600 !important;
  transition: background-color 0.3s, color 0.3s !important;
}

.btn-signin:hover {
  background-color: #003028 !important;
  color: #fff !important;
}

.navbar-toggler {
  border: none !important;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.toggler-icon {
  color: #003028;
  font-size: 24px;
  transition: transform 0.3s ease-in-out;
}

.navbar-toggler.collapsed .toggler-icon {
  transform: rotate(0deg);
}

.navbar-toggler:not(.collapsed) .toggler-icon {
  transform: rotate(180deg);
}


.navbar-nav .dropdown-menu {
  display: block;
  opacity: 0;
  width: 300px;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  pointer-events: none;
  position: absolute; 
  min-width: 10rem; 
  z-index: 1000; 
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: .25rem;
  box-shadow: 0 .5rem 1rem rgba(0, 0, 0, 0.175);
}

.navbar-nav .dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.dropdown-item {
  padding: 10px 20px;
  font-weight: 500;
  color: #333;
}

.dropdown-item:hover {
  background-color: #003028 !important;
  color: #fff !important;
}

.dropdown-submenu {
  position: relative;
}

.dropdown-submenu > .dropdown-menu-sub {

  position: static;
  display: none; 
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease, max-height 0.3s ease, opacity 0.3s ease;
  pointer-events: none;
  background-color: #f8f9fa; 
  border: none;
  border-radius: 0;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
  margin: 0;
  padding: 0;
}

.dropdown-submenu.show > .dropdown-menu-sub {
  display: block;
  opacity: 1;
  max-height: 300px; 
  transform: translateY(0);
  pointer-events: auto;
}


.dropdown-submenu .dropdown-menu-sub .dropdown-item {
  padding: 8px 30px;
  font-size: 14px;
  color: #666;
  background-color: transparent;
}

.dropdown-submenu .dropdown-menu-sub .dropdown-item:hover {
  background-color: #003028 !important;
  color: #fff !important;
  padding-left: 35px; 
  transition: padding-left 0.2s ease;
}

.dropdown-submenu .dropdown-toggle-sub {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dropdown-submenu .dropdown-toggle-sub .material-icons {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.dropdown-submenu.show > .dropdown-toggle-sub .material-icons {
  transform: rotate(90deg); 
}

@media (min-width: 992px) {
  .dropdown-submenu > .dropdown-menu-sub {
    
    position: static;
  }
}

@media (max-width: 991.98px) {
  .navbar-nav {
    margin-top: 1rem;
  }

  .navbar-nav .nav-item {
    margin-bottom: 0.5rem;
  }

  .navbar-nav .nav-link {
    margin-right: 0;
  }

  .btn-consult,
  .btn-signin {
    width: 100%;
    margin-top: 0.5rem;
  }

  .navbar-nav .d-flex {
    flex-direction: column;
  }


  .navbar-nav .dropdown-menu {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    pointer-events: auto !important;
    display: none;
    width: 100%; 
  }

  .navbar-nav .dropdown.show .dropdown-menu {
    display: block !important;
  }

  
  .dropdown-submenu > .dropdown-menu-sub {
    position: static; 
    width: 100%;
    margin-left: 0;
    border-left: 3px solid #003028; 
  }

  .dropdown-submenu .dropdown-menu-sub .dropdown-item {
    padding-left: 40px; 
  }
}

@media (max-width: 768px) {
  .navbar-brand img {
    height: 25px !important;
  }
}

@media (min-width: 992px) and (max-width: 1200px) {
  .navbar-brand img {
    height: 20px;
  }

  .navbar-nav .nav-link {
    font-size: 14px;
    margin-right: 1rem;
  }

  .btn-consult,
  .btn-signin {
    padding: 8px 16px;
    font-size: 14px;
  }
}

@media (max-width: 320px) {
  .navbar-brand img {
    height: 15px !important;
  }
}


.dropdown-toggle::after {
    display: none;
  }


  @media (min-width:322px) and (max-width: 364px) {
.navbar-brand img {
    height: 23px !important;
  }

  }











     .content {
            max-width: 800px;
            margin: 0 auto;
            padding: 40px 20px;
        }

        .quiz-modal {
            position: fixed;
            bottom: 20px;
            right: 20px;
            width: 320px;
            background: linear-gradient(135deg, #2d5a4a 0%, #1a4037 100%);
            border-radius: 20px;
            padding: 30px 25px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            z-index: 1050;
            transform: translateY(100px) scale(0.8);
            opacity: 0;
            transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .quiz-modal.show {
            transform: translateY(0) scale(1);
            opacity: 1;
        }

        .quiz-modal.hide {
            transform: translateY(100px) scale(0.8);
            opacity: 0;
        }

        .close-btn {
            position: absolute;
            top: 15px;
            right: 20px;
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
            padding: 5px;
            line-height: 1;
            transition: all 0.3s ease;
        }

        .close-btn:hover {
            transform: rotate(90deg);
            opacity: 0.7;
        }

        .device-illustration {
            text-align: center;
            margin-bottom: 25px;
            position: relative;
        }

        .laptop1 {
            width: 180px;
            height: 120px;
            background: #e8e8e8;
            border-radius: 8px 8px 0 0;
            position: relative;
            margin: 0 auto 10px;
            transform: perspective(400px) rotateX(15deg);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }

        .laptop1::before {
            content: '';
            position: absolute;
            top: 8px;
            left: 8px;
            right: 8px;
            bottom: 8px;
            background: linear-gradient(135deg, #2d5a4a 0%, #1a4037 100%);
            border-radius: 4px;
        }

        .laptop1::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: -5px;
            right: -5px;
            height: 8px;
            background: #d0d0d0;
            border-radius: 0 0 10px 10px;
        }

        .phone1 {
            width: 60px;
            height: 100px;
            background: #f0f0f0;
            border-radius: 12px;
            position: absolute;
            bottom: -10px;
            left: 20px;
            transform: rotate(-15deg);
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
        }

        .phone1::before {
            content: '';
            position: absolute;
            top: 6px;
            left: 4px;
            right: 4px;
            bottom: 6px;
            background: linear-gradient(135deg, #2d5a4a 0%, #1a4037 100%);
            border-radius: 8px;
        }

        .content-images {
            position: absolute;
            top: 20px;
            right: 30px;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

      

  

        .modal-title {
            color: white;
            font-size: 28px;
            font-weight: 700;
            line-height: 1.2;
            text-align: center;
            margin-bottom: 25px;
        }

        .quiz-btn1 {
            width: 100%;
            background: linear-gradient(135deg, #ff6b35 0%, #e55a2b 100%);
            border: none;
            color: white;
            font-size: 18px;
            font-weight: 600;
            padding: 15px 20px;
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
        }

        .quiz-btn1:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 107, 53, 0.6);
        }

        .quiz-btn1:active {
            transform: translateY(0);
        }
        @media (max-width: 768px) {
            .quiz-modal {
                width: 280px;
                right: 15px;
                bottom: 15px;
                padding: 25px 20px;
            }

            .laptop {
                width: 150px;
                height: 100px;
            }

            .modal-title {
                font-size: 24px;
            }

            .quiz-btn {
                font-size: 16px;
                padding: 12px 18px;
            }
        }

        @media (max-width: 480px) {
            .quiz-modal {
                width: calc(100vw - 30px);
                right: 15px;
                left: 15px;
            }
        }


        .modal-backdrop {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.1);
            z-index: 1040;
            opacity: 0;
            transition: opacity 0.3s ease;
            pointer-events: none;
        }

        .modal-backdrop.show {
            opacity: 1;
            pointer-events: auto;
        }