* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", system-ui, sans-serif;
  text-decoration: none;
}

body {
  background: #fff;
  color: #222;
}
.container 
{
    max-width: 1400px;
    margin: 0 auto;
}
/* NAVBAR */
.navbar {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  background: #fff;
  padding: 16px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 22px;
  font-weight: 700;
  
}
.logo a 
{
    color: cadetblue
}
.logo span {
  color: #998416
}

.nav-links {
  display: flex;
  gap: 22px;
}

.nav-links a {
  text-decoration: none;
  font-size: 14px;
  color: #000;
  font-weight: 600;
}
.nav-links a:hover {

color: #998416;

}


.nav-right {
  display: flex;
  gap: 16px;
  align-items: center;
}

.phone {
  font-size: 14px;
  color: #998416;
  text-decoration: none;
}

.signin {
  font-size: 14px;
  text-decoration: none;
  color: #333;
}

/* HERO */
.hero {
  height: 100vh;
  background: url("../img/banner.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 0 20px;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.hero-content {
  position: relative;
  max-width: 900px;
  text-align: center;
  color: #fff;
}

.hero-content h1 {
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 18px;
}

.hero-content p {
  font-size: 18px;
  line-height: 1.6;
  opacity: 0.95;
}

/* BUTTONS */
.hero-buttons {
  margin-top: 35px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.hero-buttons a {
  padding: 12px 26px;
  background: #998416;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.hero-buttons a:hover {
  background: #000;
  box-shadow: 0 0 14px rgba(255, 255, 255, 0.6), 0 0 28px rgba(255, 255, 255, 0.35), 0 0 44px rgba(255, 255, 255, 0.18);
    transform: translateY(-1px) scale(1.02);
}
/* existing CSS unchanged above */

/* HAMBURGER */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.menu-toggle span {
  width: 26px;
  height: 3px;
  background: #333;
  border-radius: 3px;
  transition: 0.3s;
}

/* section -2 */

.section-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  color: #000;
  margin-top: 25px;
}


.assessment-tabs {
  margin: 25px 0;
  display: flex;
  justify-content: center;
  gap: 12px;
}

.tab {
  padding: 10px 22px;
  border-radius: 6px;
  border: 1px solid #ddd;
  background: #fff;
  cursor: pointer;
  font-weight: 500;
}

.tab.active {
  background: cadetblue;
  color: #fff;
  border-color: cadetblue
}

.section-desc {
  max-width: 800px;
  margin: 0 auto 50px;
  text-align: center;
  font-size: 15px;
  line-height: 1.7;
}

.section-desc span {
  color: #998416;
  font-weight: 600;
}
/* ====== SECTION ====== */
.assessment-section {
  padding: 60px 0;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

/* ====== TITLE & DESC ====== */
.section-title {
  font-size: 32px;
  margin-bottom: 15px;
  font-weight: 700;
}

.section-desc {
  font-size: 16px;
  color: #555;
  margin-bottom: 40px;
}

.section-desc span {
  color: #998416;;
  font-weight: 600;
}

/* ====== TABS ====== */
.assessment-tabs {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 30px;
}

.assessment-tabs .tab {
  padding: 12px 22px;
  border: 1px solid #998416;;
  background: transparent;
  color: #998416;;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 500;
  transition: 0.3s ease;
}

.assessment-tabs .tab:hover,
.assessment-tabs .tab.active {
  background: #998416;;
  color: #fff;
}

/* ====== GRID ====== */
.assessment-grid {
  display: none;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.assessment-grid{
  display: grid;
}

/* ====== CARD ====== */
/* .assessment-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;


} */

/* ===== FIXED CARD BUTTON (ONLY FOR ASSESSMENT CARD) ===== */
.assessment-card .card-btn {
  display: block;

  margin: 15px;
  padding: 12px 15px;

  background: #5f9ea0;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  text-align: center;

  border-radius: 8px;
  box-sizing: border-box;

  transition: 0.3s ease;
}

/* CARD */
.assessment-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;

  box-shadow: 
    0 10px 25px rgba(0, 0, 0, 0.08),
    0 6px 10px rgba(95, 158, 160, 0.15);

  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.assessment-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.12),
    0 10px 20px rgba(95, 158, 160, 0.25);
}


/* IMAGE PLACEHOLDER (TOP RECTANGLE) */
.assessment-card .card-box {
  background-color: #5f9ea0;
  width: 100%;
  height: 180px;

  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
}


.assessment-card .card-btn:hover {
  opacity: 0.9;
}

.assessment-card:hover {
  transform: translateY(-8px);
}

/* IMAGE */
.assessment-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

/* TITLE */
.assessment-card h3 {
  font-size: 18px;
  padding: 15px;
  font-weight: 600;
}

/* INFO */
.card-info {
  list-style: none;
  padding: 0 15px;
  margin-bottom: 15px;
}

.card-info li {
  font-size: 14px;
  color: #666;
  margin: 6px 0;
}

.card-info del {
  color: #999;
  margin-right: 6px;
}

.card-info span {
  color: #000;
  font-weight: 600;
}
.card-box 
{
  background-color: #5f9ea0;
  width: 280px;
  height: 180px;
}
/* BUTTON */
.card-btn {
  width: calc(100% - 30px);
  margin: 0 15px 20px;
  padding: 10px;
  border: none;
  background: #5f9ea0;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s ease;
}

.card-btn:hover {
  opacity: 0.9;
}

/* ====== RESPONSIVE ====== */
@media (max-width: 768px) {
  .section-title {
    font-size: 26px;
  }

  .assessment-tabs {
    flex-direction: column;
  }
}
/* circle img */

.circle-info 
{
  text-align: center;
  padding: 20px 0;
} 
.circle-img 
{
  display: flex;
  justify-content: center;
}



/* FOOTER */
.site-footer {
  background: #fff;
  border-top: 1px solid #eaeaea;
  font-family: "Poppins", system-ui, sans-serif;
}

.footer-top {
  padding: 22px 40px;
}

.footer-container {
  /* max-width: 1200px; */
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.student-main h2 
{
  text-align: center;
  padding: 20px 0;
}

.student-section {
  padding: 30px 0;  /* navbar height + space */
}

.section-title {
  text-align: center;
  margin-bottom: 30px;
  font-size: 28px;
}
  .grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 25px;
            max-width: 1100px;
            margin: auto;
        }

        .card {
            background-color: #5f9ea0;;
            height: 110px;
            width: 210px;
            border-radius: 6px;
            display: flex;
            align-items: flex-end;
            justify-content: center;
            padding-bottom: 10px;
            color: white;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 18px rgba(0,0,0,0.2);
        }

   .career-wheel {
  position: relative;
  width: 500px;
  height: 500px;
  margin: auto;
}

.wheel-circle {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  overflow: hidden;
  border: 14px solid #f2c27a;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.wheel-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Dashed rotating circle */
.wheel-dashed {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px dashed #bbb;
  animation: rotate 18s linear infinite;
}

/* Tags */
.wheel-tag {
  position: absolute;
  padding: 10px 18px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
  display: flex;
  gap: 8px;
  align-items: center;
  white-space: nowrap;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
  animation: float 3s ease-in-out infinite;
}

/* Tag colors */
.green { background: #52e0a6; }
.yellow { background: #ffd58a; }
.blue { background: #7fb3ff; }
.purple { background: #b8a8ff; }
.pink { background: #ffb3c7; }

/* Positions */
.tag-1 { top: 0; left: 50%; transform: translateX(-50%); }
.tag-2 { top: 90px; right: -10px; }
.tag-3 { bottom: 110px; left: -10px; }
.tag-4 { bottom: 0; left: 50%; transform: translateX(-50%); }
.tag-5 { top: 90px; left: -10px; }

/* Animations */
@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}



.type-wrap {
  font-size: 56px;
  font-weight: 700;
  color: #fff;
}

/* TYPING TEXT */
.typing-text {
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  /* border-right: 2px solid #fff; */

  /* FAST & INFINITE */
  animation: typing 9s steps(25, end) infinite,
             blink 0.6s step-end infinite;

}

/* typing effect (loop reset) */
@keyframes typing {
  0% {
    width: 0;
  }
  50% {
    width: 100%;
  }
  100% {
    width: 0;
  }
}

/* cursor blink */
@keyframes blink {
  0%, 100% {
    border-color: #fff;
  }
  50% {
    border-color: transparent;
  }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .type-wrap {
    font-size: 38px;
  }
}

@media (max-width: 480px) {
  .type-wrap {
    font-size: 30px;
  }
}


/* footer */

.footer {
  background: #343333;
  color: #fff;
  padding: 25px 40px ;
  /* margin: 40px; */
}

.footer-container {
  display: grid;
  grid-template-columns: 1.5fr 2fr 1.5fr;
  gap: 40px;
}

/* LEFT */
.footer-offer {
  font-size: 16px;
  margin-bottom: 15px;
}

.subscribe-box {
  display: flex;
  border: 1px solid rgba(255,255,255,0.4);
  max-width: 260px;
  margin-bottom: 40px;
}

.subscribe-box input {
  flex: 1;
  padding: 10px;
  border: none;
  background: transparent;
  color: #fff;
}

.subscribe-box input::placeholder {
  color: #eee;
}

.subscribe-box button {
  background: transparent;
  border: none;
  color: #fff;
  padding: 0 15px;
  cursor: pointer;
}

.footer-logo {
  font-size: 60px;
  font-weight: 800;
}
.logo1 
{
  font-size: 22px;
  font-weight: 700;
}
.logo1 a 
{
    color: #fff;
    padding: 15px 0;
    font-size: 22px;
        color: cadetblue;
}
.logo1 span {
  color: #fff;
  /* padding: 15px 0; */
      color: #998416;
      font-size: 22px;
}

/* LINKS */
.footer-links {
  display: flex;
  gap: 40px;
}

.footer-links ul {
  list-style: none;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  display: block;
  margin-bottom: 10px;
  /* opacity: 0.9; */
      font-weight: 600;
}
.footer-links a:hover
{
  color: darkgray;
}
/* RIGHT */
.badge {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.badge-circle {
  width: 50px;
  height: 50px;
  border: 2px solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.footer-note {
  font-size: 13px;
  opacity: 0.85;
  line-height: 1.6;
}

/* SOCIAL */
.footer-social {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.footer-social a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}
.copyright-bar {
  border-top: 1px solid rgba(255,255,255,0.25);
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
}

.copyright-bar p {
  font-size: 13px;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.4px;
}

.copyright-bar .divider {
  margin: 0 8px;
  opacity: 0.6;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }

  .subscribe-box {
    margin: 0 auto 30px;
  }

  .badge {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .footer {
    
    padding: 40px 20px;
  }

  .footer-logo {
    font-size: 44px;
  }

  .footer-links {
    flex-direction: column;
    gap: 20px;
  }
}



/* HEADER */
.news-header {
  text-align: center;
  padding: 60px 20px 30px;
}

.news-header h1 {
  font-size: 34px;
  margin-bottom: 10px;
}

.news-header p {
  color: #555;
}

/* LAYOUT */
.news-container {
  display: grid;
  grid-template-columns: 2.5fr 1fr;
  gap: 30px;
  width: 90%;
  max-width: 1200px;
  margin: auto;
  padding-bottom: 60px;
}

/* NEWS CARD */
.news-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 25px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.news-card:hover {
  transform: translateY(-6px);
}

.news-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.news-content {
  padding: 20px;
}

.news-tag {
  display: inline-block;
  background: #2c6bed;
  color: #fff;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
}

.news-content h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.news-content p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

.news-meta {
  margin-top: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.news-meta a {
  text-decoration: none;
      color: #998416;
    font-weight: 600;
}

/* SIDEBAR */
.news-sidebar .sidebar-box {
  background: #fff;
  padding: 20px;
  border-radius: 14px;
  margin-bottom: 20px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.06);
}

.sidebar-box h4 {
  margin-bottom: 15px;
}

.sidebar-box ul {
  list-style: none;
}

.sidebar-box li {
  margin-bottom: 10px;
  font-size: 14px;
  color: #555;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .news-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .news-header h1 {
    font-size: 26px;
  }

  .news-card img {
    height: 180px;
  }
}

.about-hero {
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
  url("https://images.unsplash.com/photo-1522202176988-66273c2fd55f?auto=format&fit=crop&w=1600&q=80") center/cover;
  padding: 100px 20px;
  text-align: center;
  color: #fff;
}

.about-hero h1 {
  font-size: 42px;
  margin-bottom: 10px;
}

.about-hero p {
  font-size: 18px;
  opacity: 0.9;
}

/* ABOUT SECTION */
.about-section {
  padding: 80px 20px;
}

.about-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.about-text h2 {
  font-size: 32px;
  margin-bottom: 15px;
}

.about-text p {
  margin-bottom: 15px;
  line-height: 1.7;
}

.about-text h3 {
  margin-top: 20px;
  margin-bottom: 10px;
}

.about-text ul {
  list-style: none;
}

.about-text ul li {
  margin-bottom: 8px;
}

.about-image img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* VALUES */
.about-values {
  background: #fff;
  padding: 70px 20px;
  text-align: center;
}

.about-values h2 {
  font-size: 32px;
  margin-bottom: 40px;
}

.values-grid {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.value-box {
  background: #f3f6fb;
  padding: 30px;
  border-radius: 14px;
}

.value-box h4 {
  font-size: 20px;
  margin-bottom: 10px;
}

/* CTA */
.about-cta {
  background: #998416;
  color: #fff;
  padding: 70px 20px;
  text-align: center;
}

.about-cta h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.about-cta p {
  margin-bottom: 20px;
  opacity: 0.9;
}

.cta-btn {
  display: inline-block;
  padding: 12px 30px;
      background: #000;
    color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 30px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .about-container {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .about-hero h1 {
    font-size: 32px;
  }
}


.contact-hero {
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
  url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d?auto=format&fit=crop&w=1600&q=80") center/cover;
  padding: 90px 20px;
  text-align: center;
  color: #fff;
}

.contact-hero h1 {
  font-size: 42px;
  margin-bottom: 10px;
}

.contact-hero p {
  font-size: 18px;
  opacity: 0.9;
}

/* CONTACT SECTION */
.contact-section {
  padding: 80px 20px;
}

.contact-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

/* INFO */
.contact-info h2 {
  font-size: 30px;
  margin-bottom: 15px;
}

.contact-info p {
  margin-bottom: 20px;
  line-height: 1.7;
}

.info-box {
  margin-bottom: 15px;
}

.info-box strong {
  display: block;
  margin-bottom: 4px;
  color: #998416;
}

/* FORM */
.contact-form {
  background: #fff;
  padding: 35px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-form h2 {
  margin-bottom: 20px;
  font-size: 26px;
}

.contact-form form {
  display: flex;
  flex-direction: column;
}

.contact-form input,
.contact-form textarea {
  padding: 12px 14px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form button {
  background: #998416;
  color: #fff;
  padding: 12px;
  border: none;
  border-radius: 30px;
  font-size: 15px;
  cursor: pointer;
}

.contact-form button:hover {
  background: #000;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .contact-container {
    grid-template-columns: 1fr;
  }

  .contact-hero h1 {
    font-size: 32px;
  }
}




/* HERO */
.career-hero {
  background: linear-gradient(
    rgba(0,0,0,0.65),
    rgba(0,0,0,0.65)
  ),
  url("https://images.unsplash.com/photo-1523240795612-9a054b0db644?auto=format&fit=crop&w=1600&q=80")
  center / cover no-repeat;
  padding: 120px 20px;
  text-align: center;
  color: #fff;
}

.career-hero h1 {
  font-size: 42px;
  margin-bottom: 15px;
}

.career-hero p {
  max-width: 700px;
  margin: auto;
  font-size: 18px;
  line-height: 1.7;
}

/* SECTION */
.career-section {
  padding: 70px 20px;
  background: #f9fafb;
}

.section-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 50px;
  color: #111827;
}

/* GRID */
.career-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.career-card {
  background: #ffffff;
  padding: 15px;
  border-radius: 14px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.career-card:hover {
  transform: translateY(-8px);
}

.career-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #000;
}

.career-card p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 15px;
  color: #374151;
}

.career-card a {
  text-decoration: none;
    font-weight: 600;
    color: #000;
    background: transparent;
    padding: 4px;
    border-radius: 5px;
}

.career-card a:hover
{
  background-color:cadetblue;
 
}
/* INFO */
.career-info {
  padding: 70px 20px;
  background: #ffffff;
}

.info-content {
  max-width: 900px;
  margin: auto;
}

.info-content h2 {
  font-size: 30px;
  margin-bottom: 15px;
}

.info-content p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #374151;
}

.info-content ul li {
  list-style: none;
  margin-bottom: 10px;
  font-size: 16px;
}

/* CTA */
.career-cta {
  background: #998416;
  color: #ffffff;
  text-align: center;
  padding: 70px 20px;
}

.career-cta h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.career-cta p {
  margin-bottom: 25px;
  font-size: 18px;
}

.career-cta a {
      background: #000;
    color: #fff;
  padding: 14px 36px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .career-hero h1 {
    font-size: 30px;
  }

  .section-title {
    font-size: 26px;
  }
}





/* HERO */
.test-hero {
  background: linear-gradient(
    rgba(0,0,0,0.7),
    rgba(0,0,0,0.7)
  ),
  url("https://images.unsplash.com/photo-1584697964154-3f3d94c6d67a?auto=format&fit=crop&w=1600&q=80")
  center / cover no-repeat;
  padding: 120px 20px;
  text-align: center;
  color: #fff;
}

.test-hero h1 {
  font-size: 42px;
  margin-bottom: 15px;
}

.test-hero p {
  max-width: 700px;
  margin: auto;
  font-size: 18px;
  line-height: 1.7;
}

.test-info {
  margin-top: 25px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 15px;
}

/* INSTRUCTIONS */
.test-instructions {
  padding: 60px 20px;
  /* max-width: 300px; */
  margin: auto;
  text-align: center;
}

.test-instructions h2 {
  font-size: 30px;
  margin-bottom: 15px;
}

.test-instructions ul li {
  margin-bottom: 10px;
  font-size: 16px;
  color: #374151;
}

/* CATEGORIES */
.test-categories {
  padding: 70px 20px;
  background: #f9fafb;
  text-align: center;
}

.test-categories h2 {
  font-size: 32px;
  margin-bottom: 40px;
}

.category-grid {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
}

.category-card {
  background: #fff;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.category-card:hover {
  transform: translateY(-8px);
}

.category-card h3 {
  color: #998416;
  margin-bottom: 10px;
}

.category-card p {
  font-size: 15px;
  margin-bottom: 15px;
}

.category-card a {
  display: inline-block;
  padding: 10px 26px;
  background: #998416;
  color: #fff;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 600;
}

/* SAMPLE QUESTION */
.sample-question {
  padding: 70px 20px;
  max-width: 700px;
  margin: auto;
}

.sample-question h2 {
  font-size: 30px;
  margin-bottom: 20px;
}

.question-box {
  background: #fff;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.question {
  font-weight: 600;
  margin-bottom: 15px;
}

.question-box label {
  display: block;
  margin-bottom: 10px;
  cursor: pointer;
}

/* CTA */
.test-cta {
  background:#998416;
  color: #fff;
  text-align: center;
  padding: 70px 20px;
}

.test-cta h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.test-cta p {
  margin-bottom: 25px;
  font-size: 18px;
}

.test-cta a {
  background: #ffffff;
  color: #998416;
  padding: 14px 36px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .test-hero h1 {
    font-size: 30px;
  }

  .test-categories h2,
  .test-instructions h2,
  .sample-question h2 {
    font-size: 26px;
  }
}


.old-price {
  color: #999;
  text-decoration: line-through;
  text-decoration-thickness: 1px;
  text-decoration-color: #e74c3c; /* red scratch */
  margin-right: 6px;
}

.new-price {
  color: #27ae60;
  font-weight: 700;
  font-size: 16px;
}

a.btn.btn-add{
  display: inline-block;
    margin-bottom: 15px;
    padding: 8px 14px;
    background: #667eea;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
}  



