* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  scroll-behavior: smooth;
  /* background-image: linear-gradient(to right, #ff8177 0%, #ff867a 0%, #ff8c7f 21%, #f99185 52%, #cf556c 78%, #b12a5b 100%); */
  background-image: linear-gradient(
    -225deg,
    #77ffd2 0%,
    #6297db 48%,
    #1eecff 100%
  );
}

#mynavbar {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: #000000;
  font-weight: bolder;
  transition: 0.3s all ease;
}
.nav-item-styling a {
  transition: 0.2s all ease;
}
.nav-item-styling a:hover {
  color: #4f4f7f !important;
  transform: scale(1.1);
}
.nav-item-styling:hover a{
  border-left-color: #4299e1 !important;
  color: #4299e1;
}
.main-index {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
}
.main-page-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

@keyframes rotateImage {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.rotate-animation {
  animation: rotateImage 6s linear infinite;
}
.plan-card {
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 2rem;
  margin-top: 2rem;
}
.section-title {
  font-weight: 700;
  font-size: 1.75rem;
  color: #1c3c57;
}
.feature-checklist {
  display: flex;
  flex-wrap: wrap;
}
.feature-item {
  width: 50%;
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 1rem;
  font-weight: 500;
}
.feature-item i {
  color: #1aa053;
  font-size: 1.25rem;
  margin-right: 0.5rem;
}
.mobile-app-toggle {
  background-color: #ff914d;
  color: white;
  padding: 0.5rem 1.25rem;
  font-weight: bold;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  margin: 1rem 0;
  justify-content: center;
  /* margin-left: 180px; */
}
.mobile-app-toggle input[type="checkbox"] {
  /* margin-left: 1rem; */
  width: 20px;
  height: 20px;
}
.order-input {
  border: 1px solid #ccc;
  padding: 0.75rem 1rem;
  border-radius: 4px;
  width: 100%;
  font-weight: 600;
}
.monthly-cost-display {
  font-size: 2rem;
  font-weight: bold;
  color: #ff985c;
}
.table thead th {
  font-weight: 600;
  color: #5f5f5f;
}
.table .highlight-row {
  background-color: #ff985c;
  color: white;
}
.table .highlight-row td {
  font-weight: bold;
}
.notice {
  font-size: 0.85rem;
  color: #777;
  margin-top: 1rem;
}
.action-buttons {
  text-align: center;
  margin-top: 2rem;
}
.action-buttons .btn {
  min-width: 150px;
  font-weight: 600;
  border-radius: 6px;
  padding: 0.75rem;
}
.btn-primary {
  background-color: #4c6ef5;
  border: none;
}
.table {
  width: 100%;
  background-color: white;
  border: none;
}
.highlight-row td {
  background: #ff914d !important;
}
.highlight-row td:first-child {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}
.highlight-row td:last-child {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}
.input-checks {
  accent-color: green;
}
.card-glass {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 12px;
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}
.btn-primary {
  background-color: #3b82f6;
  border-color: #3b82f6;
}
/* feature section */
.feature-box {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  padding: 20px;
  height: 100%;
  transition: transform 0.2s ease;
}

.feature-box:hover {
  transform: translateY(-5px);
}

.feature-icon {
  font-size: 26px;
  background: #e4e9fb;
  padding: 10px;
  border-radius: 8px;
  margin-bottom: 10px;
  display: inline-block;
}

.feature-title {
  font-weight: 600;
  font-size: 1rem;
}

.feature-text {
  font-size: 0.9rem;
  color: #555;
}

.btn-feature {
  background-color: #3b82f6;
  color: white;
  border: none;
  border-radius: 8px;
  padding: 10px 25px;
}

.btn-feature:hover {
  background-color: #2563eb;
}
.section-title {
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.glass-box {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 10px;
  padding: 20px;
  height: 100%;
}

.icon-box {
  font-size: 20px;
  background-color: #eef2ff;
  padding: 8px;
  border-radius: 8px;
  display: inline-block;
  margin-bottom: 10px;
}
.fotter-links li a {
  text-decoration: none;
  color: #333;
  font-size: 18px;
  font-weight: 600;
  transition: 0.2s all ease;
}
.fotter-links li:hover a {
  color: #8400ff !important;
}
/* login sign up styling */
.login-section {
  height: calc(100vh - 86px);
}
.login-wrapper {
  width: 100%;
  max-width: 400px;
  padding: 20px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.login-header {
  padding: 15px 0;
  font-weight: bold;
  font-size: 22px;
  color: #fff;
  text-align: center;
}
.login-body {
  padding: 10px 0;
}
.login-section .form-control {
  background: rgba(255, 255, 255, 0.3);
  border: none;
  color: #fff;
}
.login-section .form-control::placeholder {
  color: #eee;
}
.login-section.form-control:focus {
  background: rgba(255, 255, 255, 0.5);
  color: #000;
}
.login-btn {
  background-color: #4caf50;
  border: none;
}
.login-btn:hover {
  background-color: #45a049;
}
.login-footer {
  text-align: center;
  padding-top: 15px;
  font-size: 14px;
  color: #eee;
}
.login-footer a {
  color: #00aced;
  text-decoration: none;
  font-weight: 500;
}
/* sign up */
.glass-effect-body {
  /* background: url('/assets/images/10136759_17973903.jpg') no-repeat center center fixed; */
  background-size: cover;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.glass-form {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 30px;
  width: 100%;
  max-width: 400px;
}

.glass-form input[type="text"],
.glass-form input[type="email"],
.glass-form input[type="password"],
.glass-form input[type="number"] {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: #fff;
}
.glass-form .dropdown-toggle {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: #fff;
}

.glass-form input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.glass-form input:focus {
  background: rgba(255, 255, 255, 0.3);
  color: #fff;
}

.glass-form .btn-outline-success {
  border-color: #28a745;
  color: #28a745;
  font-weight: 500;
}

.glass-form .btn-outline-success:hover {
  background-color: #28a745;
  color: white;
}

.glass-form label,
.glass-form p {
  color: white;
}
/* features page css */
.features-page {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  color: #2d3748;
  padding: 2rem 0;
}


.text-big {
  font-size: 18px;
   font-weight: 600;
  color: #4a5568;
  max-width: 800px;
}

/* Search form styling */
.content__search_form {
  position: relative;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.form__search {
  position: relative;
}

.form__search .input-group {
  display: flex;
  align-items: center;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  overflow: hidden;
  background: white;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.form__search .form-control {
  flex: 1;
  padding: 0.875rem 1rem;
  border: none;
  outline: none;
  font-size: 1rem;
  height: 50px;
}

.form__search .search-label {
  padding: 0 1rem;
  color: #a0aec0;
  cursor: pointer;
  font-size: 1rem;
}

/* Features grid styling */
.features-grid {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.features-page__list-item {
  background: white;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: all 0.2s ease;
  height: 100%;
  border: 1px solid #e2e8f0 !important;
  padding: 1.5rem;
}

.features-page__list-item:hover {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}

.feature-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #1a202c;
}

.feature-description {
  color: #718096;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 0;
}

/* Sidebar navigation */
.features-nav {
  position: sticky;
  top: 20px;
  padding-left: 0.5rem;
}

.nav-feature {
  padding: 0.5rem 1rem;
  color: #4a5568;
  text-decoration: none;
  border-left: 3px solid transparent;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
  border-radius: 4px;
}

.nav-feature:hover,
.nav-feature.active {
  color: #4299e1;
  background-color: #ebf8ff;
  border-left-color: #4299e1;
}

/* Section headers */
.section-header {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #1a202c;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #e2e8f0;
}


/* Responsive adjustments */
@media (max-width: 767.98px) {
  .features-grid {
    grid-template-columns: 1fr;
  }

  .mobile-nav-btn {
    background-color: #f7fafc;
    border-color: #e2e8f0;
    color: #4a5568;
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
  }

  .section-header {
    font-size: 1.3rem;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .features-content {
    padding-right: 2rem;
  }
}
