:root {
  --purple: #564592;
  --gray: #57616a;
  --white: #ffffff;
  --primary: #564592;
  --primary-dark: #443573;
  --secondary: #8065c9;
  --accent: #6c63ff;
  --text-dark: #2d2d2d;
  --text-light: #6b7280;
  --gradient: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Poppins", sans-serif;
  background: linear-gradient(135deg, #f5f7ff 0%, #ffffff 100%);
  min-height: 100vh;
}

/* Navbar Styles */
.navbar {
    padding: 15px 0;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(86, 69, 146, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.navbar-brand {
    padding: 0;
    margin: 0;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.navbar-toggler {
    border: none;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(86, 69, 146, 0.1);
    color: var(--primary);
}

.navbar-toggler:focus {
    outline: none;
    box-shadow: none;
}

.navbar-nav {
    gap: 10px;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--text-dark);
    font-weight: 500;
    padding: 8px 16px !important;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--primary);
}

.login-link {
    color: var(--primary);
    font-weight: 600;
}

.signup-btn {
    background: var(--gradient);
    color: white !important;
    padding: 8px 20px !important;
    border-radius: 8px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(86, 69, 146, 0.2);
}

.signup-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(86, 69, 146, 0.3);
}

/* Navbar Responsive */
@media screen and (max-width: 991px) {
    .navbar {
        padding: 12px 0;
    }

    .navbar-collapse {
        background: white;
        padding: 20px;
        border-radius: 12px;
        box-shadow: 0 4px 20px rgba(86, 69, 146, 0.1);
        margin-top: 15px;
    }

    .navbar-nav {
        gap: 5px;
    }

    .nav-link {
        padding: 12px 16px !important;
    }

    .signup-btn {
        width: 100%;
        text-align: center;
        margin-top: 10px;
    }
}

@media screen and (max-width: 768px) {
    .navbar {
        padding: 10px 0;
    }

    .navbar-collapse {
        background: white;
        padding: 20px;
        border-radius: 12px;
        box-shadow: 0 4px 20px rgba(86, 69, 146, 0.1);
        margin-top: 15px;
    }

    .navbar-nav {
        gap: 5px;
    }

    .nav-link {
        padding: 12px 16px !important;
    }

    .signup-btn {
        width: 100%;
        text-align: center;
        margin-top: 10px;
    }
}

/* Hero Section Adjustments */
.hero-compact {
    position: relative;
    background: linear-gradient(to right, #f8f9ff 0%, #ffffff 100%);
    padding: 140px 0 80px 0; /* Increased top padding to account for navbar */
    overflow: hidden;
    border-bottom: 1px solid rgba(86, 69, 146, 0.1);
    margin-top: 0; /* Remove any top margin */
}

/* hero */

.jumbotron {
  background: url("assets/images/hero.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 350px;
  padding: 0;
  position: relative;
  display: grid;
  place-items: center;
}
.jumbotron-cover {
  background-color: var(--purple);
  opacity: 0.8;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.jumbotron-content {
  position: relative;
  z-index: 9;
  color: white;
}
.jumbotron-content h1 {
  font-size: 82px;
  font-weight: bold;
  margin: 0;
}

.jumbotron-content p {
  font-size: 16px;
  opacity: 0.7;
}

.main-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9;
}

.main-links div {
  background-color: white;
  box-shadow: 0 0 10px 1px #56459288;
  height: 50px;
  width: 200px;
  border-radius: 5px;
  transition: all 0.2s ease-in-out;
}

.main-links div:hover {
  box-shadow: 0 0 10px 1px #564592;
}

.main-links div a {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  height: 100%;
  color: var(--gray);
  font-weight: 600;
  text-decoration: none;
}

.main-links img {
  width: 10px;
}

/* Features Section */
.features {
    padding: 40px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    position: relative;
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 30px;
}

.section-header .badge {
    background: rgba(86, 69, 146, 0.1);
    color: var(--primary);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 12px;
    display: inline-block;
}

.section-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0;
    line-height: 1.2;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin: 0 auto;
    max-width: 1200px;
}

.feature-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(86, 69, 146, 0.1);
    box-shadow: 0 4px 20px rgba(86, 69, 146, 0.08);
}

.feature-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(86, 69, 146, 0.12);
    border-color: rgba(86, 69, 146, 0.2);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: var(--gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon i {
    font-size: 24px;
    color: white;
}

.feature-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.feature-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.feature-stats .stat {
    font-size: 20px;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-stats .stat span {
    display: block;
    font-size: 13px;
    color: var(--text-light);
    font-weight: 500;
    -webkit-text-fill-color: var(--text-light);
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
    font-size: 14px;
    font-weight: 500;
}

.feature-list li i {
    width: 20px;
    height: 20px;
    background: rgba(86, 69, 146, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 10px;
}

@media screen and (max-width: 991px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px;
    }

    .feature-card {
        padding: 25px;
    }

    .section-header h2 {
        font-size: 2rem;
    }
}

@media screen and (max-width: 768px) {
    .features {
        padding: 30px 0;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .feature-card {
        padding: 20px;
    }

    .feature-icon {
        width: 48px;
        height: 48px;
    }

    .feature-icon i {
        font-size: 20px;
    }

    .feature-content h3 {
        font-size: 18px;
    }

    .feature-stats .stat {
        font-size: 18px;
    }

    .feature-list li {
        font-size: 13px;
    }
}

/* Add decorative shapes */
.features::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(86, 69, 146, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.benefits::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(108, 99, 255, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

/* features */
.features-container {
  margin-top: 150px;
}
.feedbacks-container {
  margin-top: 125px;
}
.features-content {
  color: var(--gray);
  text-align: center;
  margin-bottom: 50px;
}
.features-content h2 {
  font-size: 42px;
  font-weight: bold;
  margin-bottom: 5px;
}
.features-content p {
  font-size: 14px;
  opacity: 0.7;
}
.features-items {
  margin-left: auto;
  margin-right: auto;
  max-width: 1200px;
  width: 100%;
  height: 100%;
  position: relative;
}
.features-items-child {
  width: 100%;
  height: 230px;
}
.features-cover {
  background-color: var(--purple);
  opacity: 0.8;
  width: 100%;
  height: 230px;
  border-radius: 10px;
  position: absolute;
  top: 0;
  left: 0;
}
.image-holder {
  background-color: white;
  width: 120px;
  height: 120px;
  display: grid;
  place-items: center;
  border-radius: 100%;
  position: relative;
  top: -50px;
  left: -20px;
}
.firstItem .image-holder img {
  width: 100px;
  height: 100px;
}

.secondItem .image-holder img {
  width: 110px;
  height: 110px;
}

.thirdItem .image-holder img {
  width: 105px;
  height: 105px;
}
.features-items-content {
  position: relative;
  z-index: 9;
  color: white;
}

.features-items-content h4 {
  color: white;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  position: relative;
  z-index: 9;
  margin-top: -40px;
  padding: 0 15px;
}
.features-items-content p {
  color: white;
  font-size: 14px;
  font-weight: 300;
  opacity: 0.7;
  text-align: justify;
  padding: 0 30px;
}

/* feedbacks */
.feedbacks-content {
  position: relative;
  color: white;
}

.feedbacks-cover {
  background-color: var(--purple);
  opacity: 0.8;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.feedback-body {
  position: relative;
  z-index: 9;
  max-width: 700px;
  margin: auto;
  padding: 0 15px;
}

.feedback-body p {
  font-size: 20px;
  margin: 0;
}

/* cta */
.cta-content h3 {
  font-size: 28px;
  font-weight: bold;
  color: var(--gray);
}
.cta-content p {
  font-size: 16px;
  color: var(--gray);
  opacity: 0.7;
  font-style: italic;
}
.contactBtn {
  color: white;
  background-color: rgba(86, 69, 146, 0.8);
  border-radius: 10px;
  padding: 10px 20px;
  margin-top: 5px;
  display: inline-block;
  transition: all 0.2s ease-in-out;
}

.contactBtn:hover {
  color: white;
  text-decoration: none;
  box-shadow: 0 0 10px 1px rgba(86, 69, 146, 0.445);
}

.addExamBtn {
  color: white;
  background-color: rgba(86, 69, 146, 0.8);
  border-radius: 5px;
  padding: 7px 15px;
  margin-top: 5px;
  display: inline-block;
  transition: all 0.2s ease-in-out;
  font-size: 14px;
}

.addExamBtn:hover {
  color: white;
  text-decoration: none;
  box-shadow: 0 0 5px 0 rgba(86, 69, 146, 0.445);
}

/* Login */
.jumbotron-mini {
  background: url("assets/images/hero.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 200px;
  padding: 0;
  position: relative;
  display: grid;
  place-items: center;
}
.jumbotron-mini-cover {
  background-color: var(--purple);
  opacity: 0.8;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.jumbotron-mini-content {
  position: relative;
  z-index: 9;
  color: white;
}
.jumbotron-mini-content h1 {
  font-size: 62px;
  font-weight: bold;
  margin: 0;
}

.jumbotron-mini-content p {
  font-size: 13px;
  opacity: 0.7;
  margin: 0;
}

.login-content h3 {
  font-size: 38px;
  font-weight: bold;
  color: var(--gray);
  margin: 0;
}

.login-content h4 {
  font-size: 24px;
  font-weight: 500;
  color: var(--gray);
  margin: 0;
}

.login-content p {
  font-size: 14px;
  color: var(--gray);
  opacity: 0.7;
}

.form-content {
  max-width: 600px;
  margin: auto;
  margin-top: 30px;
}

.form-max-content {
  max-width: 800px;
  margin: auto;
  margin-top: 30px;
}

.input-style label {
  color: var(--gray);
}

.input-style input,
.input-style select,
.input-style textarea {
  border: 2px solid rgba(86, 69, 146, 0.4);
  border-radius: 5px;
  background-color: transparent;
}

.form-group {
  margin-bottom: 25px;
}

.input-style input::placeholder,
.input-style textarea::placeholder {
  color: var(--gray);
  opacity: 0.5;
}

.input-style input:focus,
.input-style select:focus,
.input-style textarea:focus {
  box-shadow: 0 0 5px 0 rgba(86, 69, 146, 0.445);
  border: 2px solid rgba(86, 69, 146, 0.4);
  border-radius: 5px;
  background-color: transparent;
}

.form-content p {
  font-size: 14px;
  color: var(--gray);
}

.form-content p a {
  font-size: 14px;
  color: var(--purple);
  text-decoration: underline;
}

.submitBtn {
  color: white;
  background-color: rgba(86, 69, 146, 0.8);
  border-radius: 5px;
  padding: 10px;
  margin-top: 5px;
  display: inline-block;
  transition: all 0.2s ease-in-out;
  border: none !important;
  width: 100%;
  margin-top: 30px;
}

.submitBtn:hover {
  color: white;
  text-decoration: none;
  box-shadow: 0 0 10px 1px rgba(86, 69, 146, 0.445);
}

.submitBtn:focus,
.addQuestionBtn:focus {
  outline: none;
}

.addQuestionBtn {
  color: rgba(86, 69, 146, 1);
  background-color: rgba(86, 69, 146, 0.05);
  border-radius: 5px;
  padding: 10px;
  margin-top: 5px;
  display: inline-block;
  transition: all 0.2s ease-in-out;
  border: none !important;
  width: 100%;
  font-weight: 500;
}

.addQuestionBtn:hover {
  color: rgba(86, 69, 146, 0.8);
  text-decoration: none;
  box-shadow: 0 0 5px 0 rgba(86, 69, 146, 0.445);
}

.grouped-inputs {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.grouped-inputs div {
  flex-grow: 1;
}

/* dashboard exam */
.examList-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 30px;
  position: relative;
}

.examList-container::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -200px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(86, 69, 146, 0.08) 0%, rgba(86, 69, 146, 0) 70%);
  border-radius: 50%;
  z-index: -1;
}

.examList-container::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(86, 69, 146, 0.05) 0%, rgba(86, 69, 146, 0) 70%);
  border-radius: 50%;
  z-index: -1;
}

.examsGrid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 25px;
  padding: 20px 0;
  position: relative;
}

.grid-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.95));
  box-shadow: 0 8px 32px rgba(86, 69, 146, 0.15);
  border-radius: 15px;
  position: relative;
  padding: 15px;
  width: 100%;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(86, 69, 146, 0.1);
  overflow: hidden;
  min-height: 180px;
}

.grid-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    125deg,
    rgba(255, 255, 255, 0.3) 0%,
    rgba(255, 255, 255, 0.2) 30%,
    rgba(86, 69, 146, 0.1) 100%
  );
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: xor;
  -webkit-mask-composite: xor;
  padding: 1px;
}

.grid-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: 0.5s;
  z-index: 0;
}

.grid-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 15px 45px rgba(86, 69, 146, 0.25);
  border: 1px solid rgba(86, 69, 146, 0.2);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.9));
}

.grid-card:hover::after {
  left: 100%;
}

.cardHeader {
  margin-bottom: 12px !important;
}

.cardHeader h4 {
  font-size: 18px;
  font-weight: 600;
  background: linear-gradient(135deg, var(--purple) 0%, var(--gray) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
  position: relative;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: 48px;
  line-height: 1.3;
  padding-right: 35px;
}

.cardTitle {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 15px !important;
}

.cardTitle p {
  margin: 0;
  font-size: 14px;
  background: linear-gradient(135deg, var(--purple) 0%, var(--gray) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
}

.courseCard {
  background: linear-gradient(135deg, rgba(86, 69, 146, 0.15), rgba(86, 69, 146, 0.05));
  color: var(--purple);
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(86, 69, 146, 0.2);
  box-shadow: 0 2px 10px rgba(86, 69, 146, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  margin-left: 10px;
  position: relative;
  overflow: hidden;
}

.courseCard::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(86, 69, 146, 0.2),
    transparent
  );
  transition: 0.5s;
}

.grid-card:hover .courseCard {
  background: linear-gradient(135deg, rgba(86, 69, 146, 0.2), rgba(86, 69, 146, 0.1));
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(86, 69, 146, 0.15);
}

.courseCard:hover::before {
  left: 100%;
}

.cardBody {
  margin-bottom: 40px;
}

.cardBody p {
  color: rgba(87, 97, 106, 0.85);
  font-size: 14px;
  line-height: 1.6;
}

.ellipsisText {
  display: block;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 30ch;
}

/* Grade section styling */
.grade-section {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 15px;
  background: linear-gradient(135deg, 
    rgba(86, 69, 146, 0.08) 0%,
    rgba(86, 69, 146, 0.05) 50%,
    rgba(86, 69, 146, 0.08) 100%
  );
  border-top: 1px solid rgba(86, 69, 146, 0.15);
}

.grade-container {
  display: flex;
  align-items: center;
  gap: 15px;
}

.grade-item {
  padding: 6px 12px;
  min-width: 90px;
}

.grade-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(86, 69, 146, 0.18);
  border: 1px solid rgba(86, 69, 146, 0.2);
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.98),
    rgba(255, 255, 255, 0.9)
  );
}

.grade-label {
  font-size: 11px;
  color: var(--purple);
  opacity: 0.8;
  margin-bottom: 4px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.grade-value {
  font-size: 16px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--purple) 0%, var(--gray) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
}

.total-grade {
  font-size: 14px;
  color: var(--gray);
  opacity: 0.7;
  font-weight: 500;
  display: inline-flex;
  margin-left: 2px;
}

.card-title {
  font-size: 0.95rem;
  line-height: 1.3;
  margin-bottom: 4px;
}

.card-subtitle {
  font-size: 0.85rem;
}

.course-code {
  font-size: 0.7rem;
  padding: 4px 10px;
}

/* Remove old grade card styles */
.gradeCard, .personalGradeCard {
  display: none;
}

/* Dropdown styling in cards */
.dropdown {
  position: absolute;
  top: 20px;
  right: 20px;
}

.dropdown .select {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  background-color: transparent;
}

.dropdown .select:hover {
  background-color: rgba(86, 69, 146, 0.1);
}

.dropdown .menu {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 5px;
  background: white;
  box-shadow: 0 3px 15px rgba(86, 69, 146, 0.15);
  border-radius: 12px;
  padding: 8px;
  min-width: 180px;
}

.dropdown .menu li a,
.dropdown .menu li button {
  padding: 10px 15px;
  border-radius: 8px;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  text-align: left;
  transition: all 0.3s ease;
  border: none;
  position: relative;
  overflow: hidden;
  background: transparent;
}

.dropdown .menu li a i,
.dropdown .menu li button i {
  width: 16px;
  text-align: center;
  font-size: 14px;
}

.dropdown .menu li a.submit-action {
  background: linear-gradient(135deg, rgba(86, 69, 146, 0.1) 0%, rgba(86, 69, 146, 0.05) 100%);
  color: var(--purple);
  font-weight: 600;
  border: 1px solid rgba(86, 69, 146, 0.1);
}

.dropdown .menu li a.submit-action:hover {
  background: linear-gradient(135deg, var(--purple) 0%, rgba(86, 69, 146, 0.9) 100%);
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(86, 69, 146, 0.2);
  border: 1px solid rgba(86, 69, 146, 0.2);
}

.dropdown .menu li a.review-action {
  background: linear-gradient(135deg, rgba(86, 69, 146, 0.15) 0%, rgba(86, 69, 146, 0.08) 100%);
  color: var(--purple);
  font-weight: 600;
  border: 1px solid rgba(86, 69, 146, 0.15);
}

.dropdown .menu li a.review-action:hover {
  background: linear-gradient(135deg, var(--purple) 0%, rgba(86, 69, 146, 0.9) 100%);
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(86, 69, 146, 0.2);
  border: 1px solid rgba(86, 69, 146, 0.2);
}

.dropdown .menu li a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: 0.5s;
}

.dropdown .menu li a:hover::before {
  left: 100%;
}

.dropdown .menu li a.delete-action {
  color: #dc4747;
  background: linear-gradient(135deg, rgba(220, 71, 71, 0.1) 0%, rgba(220, 71, 71, 0.05) 100%);
  border: 1px solid rgba(220, 71, 71, 0.1);
}

.dropdown .menu li a.delete-action:hover {
  background: linear-gradient(135deg, #dc4747 0%, #c83e3e 100%);
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(220, 71, 71, 0.2);
  border: 1px solid rgba(220, 71, 71, 0.2);
}

.dropdown .menu li a.grade-action {
  color: #F9A01B;
  background: linear-gradient(135deg, rgba(249, 160, 27, 0.1) 0%, rgba(249, 160, 27, 0.05) 100%);
  border: 1px solid rgba(249, 160, 27, 0.1);
}

.dropdown .menu li a.grade-action:hover {
  background: linear-gradient(135deg, #F9A01B 0%, #e89316 100%);
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(249, 160, 27, 0.2);
  border: 1px solid rgba(249, 160, 27, 0.2);
}

/* Grade status indicators */
.grade-status {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
  margin-top: 10px;
}

.grade-pending {
  background-color: rgba(249, 160, 27, 0.1);
  color: #F9A01B;
}

.grade-available {
  background-color: rgba(83, 189, 0, 0.1);
  color: #53BD00;
}

/* dropdown style */
.dropdown {
  min-width: 125px;
  position: absolute;
  top: 20px;
  right: 15px;
}
.select {
  width: 4px;
  margin-left: auto;
  margin-right: 0;
  /* background: #2a2f3b; */
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* border: 2px #2a2f3b solid; */
  border-radius: 0.5em;
  cursor: pointer;
  transition: 0.3s;
}
/* .select-clicked {
  border: 2px #26489a solid;
  box-shadow: 0 0 0.8em #26489a;
} */
/* .select:hover {
  background: #323741;
} */
.caret {
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #fff;
  transition: 0.3s;
}
.caret-rotate {
  transform: rotate(180deg);
}
.menu {
  list-style: none;
  padding: 0.2em;
  background: white;
  /* border: 1px #363a43 solid; */
  box-shadow: 0 0.5em 1em rgba(0, 0, 0, 0.2);
  border-radius: 0.5em;
  color: var(--gray);
  position: absolute;
  top: 2em;
  left: 0;
  width: 100%;
  /* transform: translateX(-50%); */
  opacity: 0;
  display: none;
  transition: 0.2s;
  z-index: 1;
}

.menu li a {
  padding: 0.7em 0.5em;
  margin: 0.3em 0;
  border-radius: 0.5em;
  cursor: pointer;
  font-size: 14px;
  color: var(--gray);
  text-decoration: none;
  width: 100%;
  display: inline-block;
}

.menu li button {
  padding: 0.7em 0.5em;
  margin: 0.3em 0;
  border-radius: 0.5em;
  cursor: pointer;
  font-size: 14px;
  color: var(--gray);
  text-decoration: none;
  width: 100%;
  display: inline-block;
  border: none;
  background-color: transparent;
}

.menu li button:focus {
  border: none;
}

.menu li a:hover {
  background: var(--purple);
  opacity: 0.8;
  color: white;
}

.menu li button:hover {
  background: var(--purple);
  opacity: 0.8;
  color: white;
}
.active {
  background: #23242a;
}
.menu-open {
  display: block;
  opacity: 1;
}

/* others */

table {
  font-family: "Lato", "Roboto", sans-serif;
  margin-top: 20px;
}

.navbar {
  margin-bottom: 50px;
}

.nav-item .dropdown-menu .dropdown-item {
  font-size: 14px; /* match this with your body font-size */
}

.navbarStyle {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  margin: auto;
  margin-top: 30px;
  max-width: 600px;
}

.navbarStyle a {
  color: #57616a;
  text-decoration: none;
}

.activeLink {
  color: var(--purple) !important;
  border-bottom: 2px solid var(--purple);
}

.logoutColor {
  color: #dc4747 !important;
}

.feedbackBoxContainer {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-bottom: 10px;
}

.feedbackBox {
  background-color: rgba(86, 69, 146, 0.05);
  border-radius: 10px;
  padding: 15px;
  width: 100%;
}

.feedbackGrade {
  display: flex;
  align-items: flex-end;
  gap: 12px;
}

.feedbackGrade span:last-of-type {
  padding: 2px 6px;
  font-weight: 500;
  background-color: rgba(86, 69, 146, 0.8);
  color: white;
  border-radius: 5px;
  font-size: 12px;
  display: inline-block;
}

.feedbackText span {
  display: inline-block;
  margin-bottom: 12px;
  margin-top: 16px;
}

.feedbackText p {
  font-weight: normal;
  line-height: 28px;
  color: black !important;
}

/* media queries */

@media screen and (max-width: 500px) {
  .jumbotron-content h1 {
    font-size: 58px;
  }

  .jumbotron-content p {
    font-size: 12px;
  }

  .main-links {
    gap: 30px;
  }

  .main-links div {
    width: 150px;
  }

  .features-content h2 {
    font-size: 32px;
  }
  .features-content p {
    font-size: 12px;
  }
  .image-holder {
    top: -45px;
  }
  .jumbotron-mini-content h1 {
    font-size: 54px;
  }

  .jumbotron-mini-content p {
    font-size: 11px;
  }

  .feedbackBoxContainer {
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
  }
}

/* View Switcher */
.view-switcher {
    display: flex;
    gap: 5px;
}

.view-btn {
    background-color: transparent;
    border: 2px solid rgba(86, 69, 146, 0.4);
    color: var(--gray);
    border-radius: 5px;
    padding: 8px 12px;
    transition: all 0.2s ease-in-out;
}

.view-btn:hover, .view-btn.active {
    background-color: rgba(86, 69, 146, 0.8);
    color: white;
    box-shadow: 0 0 5px 0 rgba(86, 69, 146, 0.445);
}

.view-btn:focus {
    outline: none;
    box-shadow: none;
}

/* Table Styles */
.table {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(86, 69, 146, 0.1);
    border: 1px solid rgba(86, 69, 146, 0.1);
    margin-top: 20px;
}

.table thead th {
    background: linear-gradient(135deg, rgba(86, 69, 146, 0.2), rgba(86, 69, 146, 0.1));
    color: var(--purple);
    font-weight: 600;
    border-bottom: 1px solid rgba(86, 69, 146, 0.1);
    padding: 12px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    white-space: nowrap;
}

.table tbody tr {
    transition: all 0.2s ease;
}

.table tbody tr:nth-child(even) {
    background: linear-gradient(135deg, rgba(86, 69, 146, 0.03), rgba(86, 69, 146, 0.01));
}

.table tbody tr:hover {
    background: linear-gradient(135deg, rgba(86, 69, 146, 0.08), rgba(86, 69, 146, 0.04));
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(86, 69, 146, 0.1);
}

.table tbody td {
    color: var(--gray);
    padding: 8px 12px;
    vertical-align: middle;
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(86, 69, 146, 0.05);
    white-space: nowrap;
}

/* Table Action Buttons */
.table .action-buttons {
    display: flex;
    gap: 4px;
    flex-wrap: nowrap;
}

.table .action-btn {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    text-decoration: none;
    background: transparent;
    border: 1px solid rgba(86, 69, 146, 0.1);
}

.table .action-btn i {
    font-size: 0.9rem;
}

/* Action button variants */
.table .view-btn {
    color: var(--purple);
    background: rgba(86, 69, 146, 0.1);
}

.table .view-btn:hover {
    background: var(--purple);
    color: white;
    transform: translateY(-2px);
}

.table .edit-btn {
    color: #3498db;
    background: rgba(52, 152, 219, 0.1);
}

.table .edit-btn:hover {
    background: #3498db;
    color: white;
    transform: translateY(-2px);
}

.table .delete-btn {
    color: #e74c3c;
    background: rgba(231, 76, 60, 0.1);
}

.table .delete-btn:hover {
    background: #e74c3c;
    color: white;
    transform: translateY(-2px);
}

.table .attempts-btn {
    color: #2ecc71;
    background: rgba(46, 204, 113, 0.1);
}

.table .attempts-btn:hover {
    background: #2ecc71;
    color: white;
    transform: translateY(-2px);
}

.table .add-students-btn {
    color: #f1c40f;
    background: rgba(241, 196, 15, 0.1);
}

.table .add-students-btn:hover {
    background: #f1c40f;
    color: white;
    transform: translateY(-2px);
}

.table .grade-btn {
    color: #9b59b6;
    background: rgba(155, 89, 182, 0.1);
}

.table .grade-btn:hover {
    background: #9b59b6;
    color: white;
    transform: translateY(-2px);
}

.table .submit-btn {
    color: #3498db;
    background: rgba(52, 152, 219, 0.1);
}

.table .submit-btn:hover {
    background: #3498db;
    color: white;
    transform: translateY(-2px);
}

.table .review-btn {
    color: #f1c40f;
    background: rgba(241, 196, 15, 0.1);
}

.table .review-btn:hover {
    background: #f1c40f;
    color: white;
    transform: translateY(-2px);
}

/* Table grade display */
.table .grade-value {
    font-weight: 600;
    font-size: 0.95rem;
}

.table .total-grade {
    color: var(--gray);
    opacity: 0.7;
    font-size: 0.85rem;
    margin-left: 2px;
}

.table .problem-statement {
    max-width: 250px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: var(--gray);
    opacity: 0.8;
}

/* Exam title styling */
.table td:first-child {
    font-weight: 500;
    color: var(--purple);
}

.try-exam-icon {
    color: #2e86de;
    transition: all 0.3s ease;
}

.try-exam-icon:hover {
    color: #fff;
    background-color: #2e86de;
    transform: translateY(-2px);
}

/* New Styles for Landing Page */

/* Benefits Cards */
.benefits {
    padding: 40px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 0 auto;
    max-width: 1200px;
    padding: 0 20px;
}

.benefit-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(86, 69, 146, 0.1);
    box-shadow: 0 4px 20px rgba(86, 69, 146, 0.08);
}

.benefit-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.benefit-icon i {
    font-size: 20px;
    color: white;
}

.benefit-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.benefit-stats {
    display: flex;
    gap: 15px;
    margin-bottom: 12px;
}

.benefit-stats .stat {
    font-size: 18px;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.benefit-stats .stat span {
    display: block;
    font-size: 12px;
    color: var(--text-light);
    font-weight: 500;
    -webkit-text-fill-color: var(--text-light);
}

.benefit-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 8px;
}

.benefit-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 13px;
    font-weight: 500;
}

.benefit-list li i {
    width: 18px;
    height: 18px;
    background: rgba(86, 69, 146, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 9px;
}

@media screen and (max-width: 991px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media screen and (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .benefit-card {
        padding: 20px;
    }
}

/* Updated CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.primaryBtn {
    background: linear-gradient(135deg, var(--purple) 0%, #8065c9 100%);
    color: white;
    padding: 15px 35px;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(86, 69, 146, 0.2);
}

.primaryBtn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(86, 69, 146, 0.3);
    color: white;
    text-decoration: none;
}

.secondaryBtn {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    padding: 11px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--primary);
    background: rgba(255, 255, 255, 0.9);
}

.secondaryBtn:hover {
    background: var(--primary);
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(86, 69, 146, 0.2);
}

.btn-secondary svg {
    transition: transform 0.3s ease;
    stroke: currentColor;
}

/* Updated Feature Items */
.features-items-content {
    padding: 30px;
    height: auto;
    min-height: 300px;
}

.features-items-content h4 {
    margin-bottom: 25px;
}

.features-items-content p {
    line-height: 2;
    font-size: 15px;
}

/* Responsive Adjustments */
@media screen and (max-width: 768px) {
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .stat-item h3 {
        font-size: 36px;
    }
    
    .stat-item p {
        font-size: 14px;
    }
    
    .features-items-content {
        min-height: 250px;
    }
}

/* Updated Hero Section Styles */
.hero-text {
    position: relative;
    z-index: 2;
    padding-right: 40px;
}

.hero-badge {
    display: inline-block;
    background: rgba(86, 69, 146, 0.1);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
}

.hero-text h1 {
    margin-bottom: 20px;
}

.brand-name {
    display: block;
    font-size: 3.5rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 5px;
}

.tagline {
    display: block;
    font-size: 2rem;
    color: var(--text-dark);
    font-weight: 600;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.btn-primary {
    background: var(--gradient);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 15px rgba(86, 69, 146, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(86, 69, 146, 0.3);
    color: white;
    text-decoration: none;
}

.btn-secondary {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    padding: 11px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--primary);
    background: rgba(255, 255, 255, 0.9);
}

.btn-secondary:hover {
    background: var(--primary);
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(86, 69, 146, 0.2);
}

.btn-secondary svg {
    transition: transform 0.3s ease;
    stroke: currentColor;
}

.hero-visual {
    position: relative;
    z-index: 2;
}

.feature-cards {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.feature-card {
    display: flex;
    align-items: center;
    gap: 15px;
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(86, 69, 146, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(86, 69, 146, 0.1);
}

.feature-card.active {
    background: var(--gradient);
    color: white;
}

.feature-card.active .content h3 {
    color: white;
    font-weight: 700;
}

.feature-card.active .content p {
    color: rgba(255, 255, 255, 0.95);
    opacity: 1;
}

.feature-card .icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 24px;
}

.feature-card.active .icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.feature-card:not(.active) .icon {
    background: rgba(86, 69, 146, 0.1);
    color: var(--primary);
}

.feature-card .content h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 5px 0;
    color: var(--text-dark);
}

.feature-card .content p {
    font-size: 14px;
    margin: 0;
    opacity: 0.8;
    color: var(--text-light);
}

.stats-cards {
    display: flex;
    gap: 15px;
}

.stat-card {
    flex: 1;
    background: white;
    padding: 15px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(86, 69, 146, 0.1);
    border: 1px solid rgba(86, 69, 146, 0.1);
}

.stat-card .number {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
}

.stat-card .label {
    display: block;
    font-size: 13px;
    color: var(--text-light);
}

.hero-shape-1,
.hero-shape-2 {
    position: absolute;
    border-radius: 50%;
    z-index: 1;
}

.hero-shape-1 {
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(86, 69, 146, 0.1) 0%, transparent 70%);
}

.hero-shape-2 {
    bottom: -50px;
    left: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(108, 99, 255, 0.08) 0%, transparent 70%);
}

/* Backward Compatibility & Responsive Styles */
@media screen and (max-width: 991px) {
    .hero-compact {
        padding: 40px;
    }

    .hero-text {
        padding-right: 0;
        margin-bottom: 40px;
        text-align: center;
    }

    .hero-text p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .brand-name {
        font-size: 3rem;
    }

    .tagline {
        font-size: 1.75rem;
    }
}

@media screen and (max-width: 768px) {
    .hero-badge {
        font-size: 12px;
    }

    .brand-name {
        font-size: 2.5rem;
    }

    .tagline {
        font-size: 1.5rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .stats-cards {
        flex-direction: column;
    }
}

/* Fallback styles for older browsers */
@supports not (background: var(--gradient)) {
    .brand-name {
        background: #564592;
        color: transparent;
    }

    .btn-primary,
    .feature-card.active {
        background: #564592;
    }
}

@supports not (display: flex) {
    .hero-actions,
    .feature-cards,
    .stats-cards {
        display: block;
    }

    .feature-card,
    .stat-card {
        margin-bottom: 15px;
    }
}

/* CTA Section */
.cta {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-card {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 24px;
    padding: 60px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(86, 69, 146, 0.15);
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 35px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    font-weight: 500;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.glow-button {
    background: white;
    color: var(--primary);
    padding: 15px 35px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.glow-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    color: var(--primary);
    text-decoration: none;
}

.text-button {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    padding: 15px 35px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
}

.text-button:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    color: white;
    text-decoration: none;
    border-color: white;
}

.text-button i {
    transition: transform 0.3s ease;
}

.text-button:hover i {
    transform: translateX(5px);
}

.cta-shape {
    position: absolute;
    top: 50%;
    right: -100px;
    transform: translateY(-50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

/* CTA Responsive */
@media screen and (max-width: 991px) {
    .cta-card {
        padding: 40px;
    }

    .cta-content h2 {
        font-size: 2.2rem;
    }
}

@media screen and (max-width: 768px) {
    .cta-card {
        padding: 30px 20px;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }

    .cta-content p {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .glow-button,
    .text-button {
        width: 100%;
        justify-content: center;
    }
}
