body {
    background: #F9FAFB;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.bg-blue{
    opacity: 1;
    background-color: rgb(219 234 254);
}
.bg-dark-blue{
    opacity: 1;
    background-color: #06b6d4;
}
.bg-pink{
    opacity: 1;
    background-color: #ec4899;
} 
.bg-green {
    opacity: 1;
    background-color: rgb(220 252 231);
}
.bg-dark-green {
    opacity: 1;
    background-color: #10b981;
}
.bg-purple {
    opacity: 1;
    background-color: rgb(147 51 234);
}
.bg-orange {
    opacity: 1;
    background-color: rgb(234 88 12);
}
.text-gray {
    opacity: 1;
    color: rgb(156 163 175);
}
.text-orange {
    opacity: 1;
    color: rgb(234 88 12);
}
.text-blue{
    opacity: 1;
    color: rgb(37 99 235);
}
.text-green{
    opacity: 1;
    color: rgb(22 163 74);
}
.text-purple{
    opacity: 1;
    color: rgb(147 51 234);
}

.fs-10 {
    font-size: 60px !important;
}
.card.quick-box div {
    width: 50px;
    height: 50px;
    border-radius: 35%;
    margin-bottom: 10px;
}
.feature-card div {
    width: 50px;
    height: 50px;
    border-radius: 35%;
    margin-bottom: 10px;
}
.login-wrapper .Cicon {
    width: 50px;
    height: 50px;
    border-radius: 35%;
    margin-right: 20px;
}

/* Promo Banner */
.edumaster-banner {
  background: linear-gradient(90deg, #078B11, #FD8000);
  color: #fff;

  .btn-claim {
    background-color: rgba(255, 255, 255, 0.15);
    border: none;
    color: #fff;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.3s ease;
  }

  .btn-claim:hover {
    background-color: rgba(255, 255, 255, 0.3);
  }

  .btn-close-banner {
    background: transparent;
    border: none;
    font-size: 20px;
    line-height: 1;
  }
}

/* Navbar */
.navbar {
  .navbar-brand {
    font-size: 1.25rem;
    font-weight: bold;

    .logo-text {
      font-size: 18px;
      color: #FD8000;
    }
  }

  .nav-link {
    font-weight: 500;
    color: #4a4a4a;
    margin-left: 15px;
    transition: color 0.3s ease;
  }

  .nav-link.active,
  .nav-link:hover {
    color: #FD8000;
  }

  .btn-signin {
    background: linear-gradient(90deg, #078B11, #FD8000);
    color: white;
    border-radius: 6px;
    padding: 6px 18px;
    font-weight: 500;
    border: none;
    transition: 0.3s ease;
  }

  .btn-signin:hover {
    opacity: 0.85;
  }
}

/* Bell icon vibration animation */
@keyframes bell-shake {
  0% { transform: rotate(0); }
  25% { transform: rotate(10deg); }
  50% { transform: rotate(-10deg); }
  75% { transform: rotate(10deg); }
  100% { transform: rotate(0); }
}

.edumaster-banner i.fa-bell {
  animation: bell-shake 1s infinite;
  transform-origin: top center;
}

/* Hero Section */
.hero-section {
  background-color: #f5f7ff;
}

.trusted-badge {
  background: rgb(22 163 74);
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 14px;
  color: #fff;
}

.hero-section h1 {
  font-size: 2.5rem;
}

.hero-section .highlight-text {
  background: linear-gradient(90deg, #078B11, #FD8000);
  background-clip: text;
  color: transparent;
}

.btn-primary-gradient {
  background: linear-gradient(to right, #078B11, #FD8000);
  color: #fff;
  border-radius: 6px;
  padding: 10px 20px;
  font-weight: 500;
  border: none;
  transition: all 0.3s ease;
}

.btn-primary-gradient:hover {
  opacity: 0.9;
  color: #fff;
}

.hero-img {
  transform: rotate(3deg);
  max-width: 100%;
  border-radius: 16px;
}

.hero-image-wrapper {
  position: relative;
  display: inline-block;
}

.badge-icon {
  position: absolute;
  background: linear-gradient(to right, #078B11, #FD8000);
  color: #fff;
  border-radius: 50%;
  padding: 12px;
  font-size: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.badge-icon.bottom-start {
  left: -10px;
  bottom: -10px;
}

.badge-icon.top-end {
  top: -10px;
  right: -10px;
}

.stats-row .stat-icon {
  font-size: 20px;
  margin-bottom: 8px;
  color: rgb(22 163 74);
}

/* Hover animation on teacher image */
.hero-image-wrapper:hover .hero-img {
  transform: rotate(0deg) scale(1.05);
  transition: transform 0.5s ease;
}

/* Smooth transition on scroll */
.hero-section .hero-img,
.hero-section .trusted-badge,
.hero-section h1,
.hero-section p,
.hero-section .btn,
.stats-row .col-md-3 {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.hero-section.reveal .hero-img,
.hero-section.reveal .trusted-badge,
.hero-section.reveal h1,
.hero-section.reveal p,
.hero-section.reveal .btn,
.hero-section.reveal .col-md-3 {
  opacity: 1;
  transform: translateY(0);
}

/* Optional delay effects */
.hero-section .trusted-badge { transition-delay: 0.1s; }
.hero-section h1 { transition-delay: 0.2s; }
.hero-section p { transition-delay: 0.3s; }
.hero-section .btn-primary-gradient { transition-delay: 0.4s; }
.hero-section .btn-outline-secondary { transition-delay: 0.5s; }
.hero-section .hero-img { transition-delay: 0.6s; }
.hero-section .col-md-3:nth-child(1) { transition-delay: 0.7s; }
.hero-section .col-md-3:nth-child(2) { transition-delay: 0.8s; }
.hero-section .col-md-3:nth-child(3) { transition-delay: 0.9s; }
.hero-section .col-md-3:nth-child(4) { transition-delay: 1.0s; }


/* Feature Section */
/*.features-section {
  background-color: #fdfdfd;
}*/

.features-section h2 {
  font-size: 2rem;
}

.feature-card {
  background: #fff;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.gradient-box {
  background: linear-gradient(to right, #078B11, #FD8000);
  border-radius: 16px;
}


.quick-box {
  border-radius: 12px;
  padding: 20px;
  background-color: #f4f6fa;
  height: 100%;
  transition: 0.3s ease;
}
.quick-box:hover {
  transform: translateY(-5px);
}

.quick-box.blue { background-color: #e0ecff; }
.quick-box.pink { background-color: #ffe8f1; }
.quick-box.green { background-color: #dcfce7; }
.quick-box.purple { background-color: #eee6ff; }

.platform-features i {
  font-size: 14px;
}

.support-box {
  background: linear-gradient(to right, #078B11, #FD8000);
  border-radius: 12px;
}

.subscribe-box {
  background: linear-gradient(to right, #078B11, #FD8000);
  padding: 80px;
}


.bg-footer {
  background-color: #161E2C;
  color: white;
  font-family: 'Segoe UI', sans-serif;
}
.bg-footer input[type="email"] {
    width: 70%;
}
.footer-icon i {
    background: linear-gradient(90deg, #078B11, #FD8000);
    padding: 15px;
    border-radius: 5px;
}
.text-gradient {
  background: linear-gradient(90deg, #078B11, #FD8000);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.btn-subscribe {
  background: linear-gradient(90deg, #078B11, #FD8000);
  color: white;
  border: none;
}
.input-dark {
  background-color: #161b22;
  border: 1px solid #30363d;
  color: white;
}
.input-dark::placeholder {
  color: #777;
}
.footer-icon {
  font-size: 28px;
  color: #fff;
  margin-bottom: 10px;
}
.social-icons a {
  color: #8b949e;
  margin-right: 10px;
  font-size: 16px;
  transition: 0.3s;
}
.social-icons a:hover {
  color: #fff;
}
footer a {
  color: #8b949e;
  text-decoration: none;
}
footer a:hover {
  color: white;
}
footer li {
    padding: 0 0 8px 0;
}


/*Signin*/

.login-wrapper{background:#EEF5FF ;}
.edumaster-login {
  min-height: 100vh;
}

.shadow-lg {
  border-radius: 1.5rem;
}

.brand-logo h3 {
  font-weight: 700;
  font-size: 1.75rem;
  color: #000;
}
.brand-logo span {
  color: #6c63ff;
}

.left-section h2 {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 1rem;
}
.left-section h2 span {
  color: #3b49df;
}

.left-section p.description {
  color: #6b7280;
  font-size: 0.95rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.info-card {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.icon-box {
  width: 40px;
  height: 40px;
  background-color: #e7ecff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-box i {
  font-size: 1rem;
  color: #3b49df;
}

.info-card h6 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
  color: #111827;
}

.info-card p {
  font-size: 0.85rem;
  color: #6b7280;
  margin: 0;
}

.nav-tabs .nav-link {
  border: none;
  font-size: 1rem;
}
.nav-tabs .nav-link.active {
  color: #FD8000;
  font-weight: 600;
  background: none;
  border-bottom: 2px solid #FD8000;
}

.btn-gradient {
  background: linear-gradient(to right, #078B11, #FD8000);
  color: #fff;
  border: none;
  font-weight: 500;
}

.btn-gradient:hover {
  background: linear-gradient(to right, #3b41b5, #7f85f0);
}

.input-group .form-control {
  border-right: 0;
}
.input-group .input-group-text {
  background-color: #f1f3f5;
  border-left: 0;
}

.form-check-input:checked {
  background-color: #6c63ff;
  border-color: #6c63ff;
}


/*Dashboard*/

.dashboard .bg-gradient {
  background: linear-gradient(to right, #078B11, #FD8000) !important;
}

.dashboard .card {
  border: none;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.dashboard h4, .dashboard h5, .dashboard h6 {
  margin-bottom: 0.5rem;
}

.dashboard .badge {
  font-size: 0.75rem;
  background-color: #f3f4f6;
  padding: 0.3rem 0.6rem;
  border-radius: 8px;
}

.dashboard  .btn-outline-light {
  color: #fff;
  border-color: #fff;
}

.dashboard  .btn-outline-light:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.dashboard .btn-light.text-primary {
  border: none;
}

.dashboard .summary-cards .card {
  padding: 1.2rem;
  font-size: 1rem;
  font-weight: 500;
  color: #111827;
  background-color: #ffffff;
}

.dashboard .progress {
  height: 6px;
  border-radius: 5px;
}

.dashboard .progress-bar {
  border-radius: 5px;
}

.dashboard .bg-purple {
  background-color: #a855f7 !important;
}

/* Quick actions */
.dashboard .quick-actions .btn {
  font-weight: 500;
  border-radius: 0.6rem;
  padding: 0.6rem 1rem;
}

.dashboard .recent-activity ul {
  padding-left: 1rem;
}

.dashboard .recent-activity li {
  font-size: 0.9rem;
  margin-bottom: 1rem;
}
.online {
    width: 25px;
    height: 25px;
    position: relative;
    top: 35px;
    left: -35px;
    border-radius: 50%;
    border: 2px solid #fff;
}

@media (max-width: 767.98px) {
  .dashboard .bg-gradient {
    flex-direction: column !important;
    text-align: center;
  }

  .dashboard .bg-gradient .d-flex {
    flex-direction: column;
    align-items: center !important;
  }

  .dashboard .summary-cards .card {
    margin-bottom: 1rem;
  }
}


/* Quick actions */
.quiz .card {
  border: none;
  border-radius: 1.25rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
}

.quiz .badge {
  font-size: 0.75rem;
  padding: 0.35em 0.65em;
  border-radius: 0.5rem;
}

/*.quiz .bg-gradient {
  background: linear-gradient(to right, #4e54c8, #8f94fb);
}*/
.quiz .btn-gradient {
  background: linear-gradient(to right, #078B11, #FD8000);
  border: none;
}

.quiz .btn-gradient:hover {
  background: linear-gradient(to right, #3f48c4, #7a82f8);
}

.quiz .progress {
  height: 6px;
  border-radius: 10px;
}

.quiz .form-check-input {
  margin-right: 10px;
}

.quiz .form-check-label {
  font-size: 1rem;
}

.quiz button.rounded-circle {
  width: 32px;
  height: 32px;
  padding: 0;
  font-size: 0.85rem;
}

#navigator-buttons{flex-wrap: wrap;}

@media (max-width: 767.98px) {
  .quiz .card {
    margin-bottom: 1.5rem;
  }

  .quiz .d-flex.justify-content-between.align-items-center.mb-2 {
    flex-direction: column;
    align-items: flex-start !important;
  }

  .quiz .d-flex.justify-content-between {
    flex-direction: column;
    gap: 1rem;
  }
}

/* Intro Section */
.learning-intro h2 span {
  color: rgb(22 163 74);
}
.learning-intro .btn-outline-primary {
  font-size: 0.85rem;
  border-radius: 20px;
}

/* Stats Row */
.learning-intro .row h4 {
  font-size: 1.5rem;
}

/* Cards Section */
.learning-cards .card {
  border: none;
  border-radius: 1rem;
  transition: all 0.3s ease;
}
.learning-cards .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.learning-cards .badge {
  font-size: 0.75rem;
}
.learning-cards .card-title {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
.learning-cards .card-text {
  font-size: 0.85rem;
}
.learning-cards .btn {
  font-size: 0.85rem;
  border-radius: 0.5rem;
}

/* Icons in course details */
.learning-cards .card .fa-clock,
.learning-cards .card .fa-pen,
.learning-cards .card .fa-users {
  color: #6c757d;
}

/* Call To Action Section */
.cta h3 {
  font-size: 2rem;
}
.cta p {
  font-size: 1rem;
}
.cta .btn {
  padding: 0.6rem 1.5rem;
  font-size: 0.95rem;
  border-radius: 30px;
}


/* Header Section */
.practice-header h2 span {
  color: #e67e22;
}

.practice-header .badge {
  font-size: 0.85rem;
  border-radius: 20px;
}

/* Practice Test Cards */
.practice-cards .card {
  border: none;
  border-radius: 1rem;
  transition: all 0.3s ease;
}
.practice-cards .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}
.practice-cards .badge {
  font-size: 0.7rem;
  padding: 0.35em 0.65em;
  border-radius: 0.5rem;
}
.practice-cards h5 {
  font-size: 1.1rem;
}
.practice-cards .btn {
  border-radius: 0.5rem;
  font-size: 0.9rem;
}

/* Instructions */
.test-instructions .card {
  background-color: #ffffff;
  border: none;
  border-radius: 1.25rem;
}
.test-instructions ul {
  font-size: 0.95rem;
  line-height: 1.8;
}
.test-instructions i {
  color: #10b981;
}



.contact-hero-section {
  background: linear-gradient(to right, #078B11, #FD8000);
}

.contact-hero-section h1 {
  font-size: 2.5rem;
}

.contact-hero-section h2 {
  font-size: 2rem;
}

.contact-hero-section .row div {
  font-weight: 500;
}

.contact-methods .card {
  border-radius: 1rem;
  font-size: 0.95rem;
}

.bg-light-blue {
  background-color: #e8f1fb;
}

.bg-light-green {
  background-color: #e7f9ef;
}

.bg-light-purple {
  background-color: #f3e8ff;
}

.bg-light-orange {
  background-color: #fff0e0;
}

.text-purple {
  color: #9b59b6;
}

.text-orange {
  color: #e67e22;
}

.contact-form .form-control,
.contact-form .form-select {
  font-size: 0.9rem;
  border-radius: 0.5rem;
}

.contact-form .btn {
  font-size: 0.95rem;
  border-radius: 0.6rem;
}

.contact-hero-section .card h6 {
  font-size: 1rem;
}

.contact-hero-section .card ul li {
  font-size: 0.9rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid #f1f1f1;
}

.contact-hero-section .card ul li:last-child {
  border-bottom: none;
}

.contact-hero-section .card ul li i {
  color: #4e54c8;
}

.contact-hero-section .cta-footer h4 {
  font-size: 1.5rem;
}

.contact-hero-section .cta-footer p {
  font-size: 1rem;
}

.form-section {
  padding: 1.5rem;
  border: 1px solid #ccc;
  background: #f9f9f9;
  border-radius: 6px;
}
.section-title {
  background: linear-gradient(to right, #078B11, #FD8000);
  color: white;
  padding: 0.5rem 1rem;
  margin-bottom: 1rem;
  font-size: 1.1rem;
  font-weight: bold;
}
/* payment status */
.card-failure {
  max-width: 600px;
  margin: auto;
  background: #fff;
  border: none;
  border-radius: 12px;
  padding: 40px 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  text-align: center;
}
.error-icon {
  font-size: 64px;
  color: #dc3545;
  margin-bottom: 20px;
}
.tx-details {
  margin-top: 20px;
  text-align: left;
}
.tx-details strong {
  color: #000;
}
.highlight {
  color: #dc3545;
  font-weight: 600;
}
.btn-try-again {
  margin-top: 30px;
}

.card-success {
  max-width: 600px;
  margin: auto;
  background: #fff;
  border: none;
  border-radius: 12px;
  padding: 40px 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  text-align: center;
}
.success-icon {
  font-size: 64px;
  color: #28a745;
  margin-bottom: 20px;
}
.tx-details {
  margin-top: 20px;
  text-align: left;
}
.tx-details strong {
  color: #000;
}
.btn-back {
  margin-top: 30px;
}
.highlight {
  color: #28a745;
  font-weight: 600;
}

/* account section */
.nav-pills .nav-link{color: #000;}  
    .nav-pills .nav-link.active {
        background: linear-gradient(90deg, #078B11, #FD8000);
        color: white;
        border-radius: 6px;
        padding: 6px 18px;
        font-weight: 500;
        border: none;
        transition: 0.3s ease;
    }
    .nav-pills .tab-pane {
      padding-left: 2rem;
    }
    .btn.active{background: linear-gradient(90deg, #078B11, #FD8000);}
    /*.form-check-input:checked {
        background: linear-gradient(90deg, #078B11, #FD8000);
        color: #000;
        border: none;
    }*/
        .btn-common {
        background: linear-gradient(90deg, #078B11, #FD8000);
        color: white;
        border-radius: 6px;
        padding: 6px 18px;
        font-weight: 500;
        border: none;
        transition: 0.3s ease;
    }
    .error{
        color: red;
    }
    
.tab-content .input-group label{
    position: absolute;
    width: 100%;
    top: 35px;
    font-size: 14px;
    color:red;
} 

      .test-icons .icon-circle {
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-size: 1.5rem;
}
.your-tests h5,
.tips-section h5 {
  font-size: 1.2rem;
}
.your-tests .card,
.tips-section .card {
  border-radius: 1rem;
}
.tips-section .card img {
  object-fit: cover;
}
.referral-banner p {
  font-size: 0.95rem;
}
.btn-outline-primary{ border: 1px solid #0a6811; color: #0a6811; }
.btn:hover {
    color: #fff;
    background: linear-gradient(to right, #0a6811, #c86a0a);
    border-color: #0a6811;
}



/*Order details*/

.order-section {
      background: #fff;
      border-radius: 8px;
      box-shadow: 0 3px 8px rgba(0,0,0,0.05);
      padding: 20px;
      margin-bottom: 25px;
    }
    .order-section h4, .order-section h5 {
      color: #343a40;
    }
    .order-section .table thead {
      background: #e9ecef;
    }
    .order-section .category-title {
      background: #c10000;
      color: #fff;
      padding: 10px 15px;
      border-radius: 5px;
      margin-bottom: 15px;
    }

.order-header {
      background: #fff;
      padding: 20px;
      border-radius: 6px;
      margin-bottom: 20px;
    }
    .order-card {
      background: #fff;
      border-radius: 8px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.05);
      padding: 20px;
      margin-bottom: 20px;
    }
    .order-summary {
      font-size: 15px;
    }
   .order-card .table th {
      background: #e9ecef;
    } 