.elementor-3006 .elementor-element.elementor-element-8a6adfd{--display:flex;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-46ef3bb *//* ================= ROOT ================= */
:root {
  --bg: #F9FAFB;
  --navy: #142B4F;
  --text: #1F2A37;
  --green: #22C55E;
  --white: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

body {
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 80px 20px;
}

/* ================= HERO ================= */
.urdu-hero {
  text-align: center;
  background: linear-gradient(180deg, #ffffff, #f1f5f9);
}

.urdu-hero h1 {
  font-size: 3rem;
  color: var(--navy);
  margin-bottom: 20px;
}

.urdu-hero p {
  max-width: 720px;
  margin: auto;
  font-size: 1.1rem;
}

.hero-actions {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* ================= BUTTONS ================= */
.btn {
  padding: 14px 30px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.primary {
  background: var(--white);
  color: var(--text);
  border: 2px solid var(--navy);
}

.secondary {
  border: 2px solid var(--navy);
  color: var(--navy);
}

.btn:hover {
  border-color: var(--green);
  transform: scale(1.05);
}

/* ================= GRIDS ================= */
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ================= CARDS ================= */
.info-card,
.curriculum-box,
.why-card {
  background: var(--white);
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.info-card:hover,
.curriculum-box:hover,
.why-card:hover {
  transform: translateY(-8px);
}

/* ================= SKILLS ================= */
.skill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 40px;
}

.skill-grid span {
  background: var(--white);
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
}

/* ================= PROCESS ================= */
.process-list {
  max-width: 600px;
  margin: 40px auto 0;
  list-style: none;
}

.process-list li {
  padding: 16px;
  border-left: 4px solid var(--navy);
  margin-bottom: 14px;
  background: var(--white);
  border-radius: 12px;
}

/* ================= TRIAL ================= */
.urdu-trial {
  background: linear-gradient(180deg, #f1f5f9, #ffffff);
  text-align: center;
}

.trial-actions {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .grid-4, .grid-3 {
    grid-template-columns: 1fr;
  }

  .urdu-hero h1 {
    font-size: 2.2rem;
  }
}/* End custom CSS */