/* ==========================================================================
   Unified App Styles (Login, Register, Forgot, Reset, Landing)
   Source: consolidated from uploaded style blocks.
   Safe to include on all pages without changing HTML.
   ========================================================================== */

/* -----------------------------
   0) CSS Variables (superset)
   ----------------------------- */
:root {
  --primary-color: #4a6fdc;
  --secondary-color: #6c63ff;
  --accent-color: #ff6b6b;
  --light-color: #f8f9fa;
  --dark-color: #212529;
  --success-color: #28a745;
  --error-color: #dc3545;
  --warning-color: #ffc107;

  /* Register (green theme) */
  --register-color: #00b894;
  --register-secondary: #00cec9;

  /* Reset (purple theme) */
  --reset-color: #6c5ce7;
  --reset-secondary: #a29bfe;
}

/* -----------------------------
   1) Base Reset & Body
   ----------------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: linear-gradient(135deg, #e0f7fa 0%, #bbdefb 25%, #d1c4e9 50%, #ffccbc 75%, #e8f5e9 100%);
  background-size: 400% 400%;
  animation: gradientShift 15s ease infinite;
  overflow-x: hidden;
}

/* Helpful wrapper used on landing */
.content-wrapper,
.main-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  position: relative;
}

/* Landing overlay rings */
.content-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="none"/><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/><circle cx="50" cy="50" r="30" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/><circle cx="50" cy="50" r="20" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/><circle cx="50" cy="50" r="10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></svg>');
  background-size: 100px 100px;
  opacity: .3;
  z-index: -1;
}

/* -----------------------------
   2) Cards (page shells)
   ----------------------------- */
.login-card,
.forgot-card,
.register-card,
.reset-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  padding: 3rem;
  width: 100%;
  max-width: 550px;
  position: relative;
  overflow: hidden;
  animation: slideIn .6s ease;
}

/* Top accent bar for each card */
.login-card::before,
.forgot-card::before,
.register-card::before,
.reset-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
}

.login-card::before {
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.forgot-card::before {
  background: linear-gradient(90deg, var(--warning-color), var(--accent-color));
}

.register-card::before {
  background: linear-gradient(90deg, var(--register-color), var(--register-secondary));
}

.reset-card::before {
  background: linear-gradient(90deg, var(--reset-color), var(--reset-secondary));
}

/* -----------------------------
   3) Back links & headers
   ----------------------------- */
.back-link {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: .5rem;
  transition: all .3s ease;
  z-index: 10;
}

.back-link:hover {
  color: var(--secondary-color);
  transform: translateX(-5px);
}

/* -----------------------------
   4) Branding (logo etc.)
   ----------------------------- */
.logo-container {
  text-align: center;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.logo {
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .1);
  position: relative;
  overflow: hidden;
  padding: 10px;
}

.logo::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(to bottom right, rgba(255, 255, 255, .3), rgba(255, 255, 255, .1), rgba(255, 255, 255, .3));
  transform: rotate(45deg);
  animation: shine 3s infinite;
}

.logo img {
  width: 90%;
  height: 90%;
  object-fit: contain;
  z-index: 1;
  position: relative;
}

.logo i {
  font-size: 2.5rem;
  color: #fff;
}

/* Per-page logo color overrides (keep HTML unchanged) */
.register-card .logo {
  background: linear-gradient(135deg, var(--register-color), var(--register-secondary));
}

/* -----------------------------
   5) Typography helpers
   ----------------------------- */
.welcome-text {
  font-weight: 300;
  font-size: 1.5rem;
  color: var(--dark-color);
  margin-bottom: .5rem;
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
  animation-delay: .3s;
}

.site-url {
  font-weight: 800;
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  letter-spacing: -0.5px;
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
  animation-delay: .5s;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, .05);
}

.department {
  font-weight: 500;
  font-size: 1.3rem;
  color: var(--secondary-color);
  margin-bottom: .5rem;
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
  animation-delay: .7s;
}

.university {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--dark-color);
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
  animation-delay: .9s;
}

.login-title,
.forgot-title,
.register-title,
.reset-title {
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--dark-color);
  margin-top: .5rem;
  margin-bottom: .5rem;
}

.login-subtitle,
.forgot-subtitle,
.register-subtitle,
.reset-subtitle {
  font-weight: 400;
  font-size: .95rem;
  color: #6c757d;
  line-height: 1.6;
}

/* -----------------------------
   6) Forms
   ----------------------------- */
.form-group {
  margin-bottom: 1.5rem;
  position: relative;
}

.form-label {
  font-weight: 500;
  font-size: .9rem;
  color: var(--dark-color);
  margin-bottom: .5rem;
  display: block;
}

.input-group {
  position: relative;
}

.input-group-text {
  background: transparent;
  border: 2px solid #e0e0e0;
  border-right: none;
  color: var(--primary-color);
}

.form-control {
  border: 2px solid #e0e0e0;
  border-left: none;
  padding: .75rem 1rem;
  font-size: .95rem;
  transition: all .3s ease;
  background: rgba(255, 255, 255, .8);
}

/* Default focus (login/forgot) */
.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 .2rem rgba(74, 111, 220, .1);
  background: #fff;
}

.input-group:focus-within .input-group-text {
  border-color: var(--primary-color);
}

/* Scoped focus colors for Register & Reset forms */
.register-card .form-control:focus {
  border-color: var(--register-color);
  box-shadow: 0 0 0 .2rem rgba(0, 184, 148, .1);
}

.register-card .input-group:focus-within .input-group-text {
  border-color: var(--register-color);
}

.reset-card .form-control:focus {
  border-color: var(--reset-color);
  box-shadow: 0 0 0 .2rem rgba(108, 92, 231, .1);
}

.reset-card .input-group:focus-within .input-group-text {
  border-color: var(--reset-color);
}

/* Optional helper class present in landing styles */
.input-group.focused .input-group-text {
  border-color: var(--primary-color);
  /*background: rgba(74, 111, 220, .05);*/
}

/* Small utilities for validation & hints */
.validation-feedback {
  font-size: .85rem;
  margin-top: .5rem;
  display: none;
}

.validation-feedback.show {
  display: block;
  animation: slideDown .3s ease;
}

.validation-feedback.valid {
  color: var(--success-color);
}

.validation-feedback.invalid {
  color: var(--error-color);
}

.password-toggle {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: #6c757d;
  transition: color .3s ease;
  z-index: 10;
  font-size: 1.2rem;
}

.password-toggle:hover {
  color: currentColor;
}

.password-strength {
  margin-top: .5rem;
  height: 5px;
  background: #e0e0e0;
  border-radius: 5px;
  overflow: hidden;
  display: none;
}

.password-strength.show {
  display: block;
}

.password-strength-bar {
  height: 100%;
  width: 0;
  transition: all .3s ease;
  border-radius: 5px;
}

.password-strength-bar.weak {
  width: 33%;
  background: var(--error-color);
}

.password-strength-bar.medium {
  width: 66%;
  background: var(--warning-color);
}

.password-strength-bar.strong {
  width: 100%;
  background: var(--success-color);
}

.password-strength-text {
  font-size: .8rem;
  margin-top: .25rem;
  display: none;
}

.password-strength-text.show {
  display: block;
}

.requirement {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: .5rem;
  color: #6c757d;
  transition: color .3s ease;
}

.requirement:last-child {
  margin-bottom: 0;
}

.requirement.met {
  color: var(--success-color);
}

/* Token info (Reset page) */
.token-info {
  background: rgba(108, 92, 231, .1);
  border-left: 4px solid var(--reset-color);
  padding: 1rem;
  margin-bottom: 1.5rem;
  border-radius: 8px;
  font-size: .9rem;
  color: var(--dark-color);
  display: flex;
  align-items: center;
  gap: .75rem;
}

.token-info i {
  color: var(--reset-color);
  font-size: 1.2rem;
}

/* -----------------------------
   7) Buttons (grouped base)
   ----------------------------- */
.get-started-btn,
.login-btn,
.submit-btn,
.register-btn,
.reset-btn {
  padding: .8rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(74, 111, 220, .3);
  transition: all .3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  position: relative;
  overflow: hidden;
}

/* Individual gradients */
.get-started-btn,
.login-btn {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.submit-btn {
  background: linear-gradient(135deg, var(--warning-color), var(--accent-color));
}

.register-btn {
  background: linear-gradient(135deg, var(--register-color), var(--register-secondary));
}

.reset-btn {
  background: linear-gradient(135deg, var(--reset-color), var(--reset-secondary));
}

/* Shine effect */
.get-started-btn::before,
.login-btn::before,
.submit-btn::before,
.register-btn::before,
.reset-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .3), transparent);
  transition: left .5s ease;
}

.get-started-btn:hover::before,
.login-btn:hover::before,
.submit-btn:hover::before,
.register-btn:hover::before,
.reset-btn:hover::before {
  left: 100%;
}

.get-started-btn:hover,
.login-btn:hover,
.submit-btn:hover,
.register-btn:hover,
.reset-btn:hover {
  transform: translateY(-2px);
}

/* Slightly different shadows to match themes */
.login-btn:hover {
  box-shadow: 0 10px 25px rgba(74, 111, 220, .3);
}

.submit-btn:hover {
  box-shadow: 0 10px 25px rgba(255, 107, 107, .3);
}

.register-btn:hover {
  box-shadow: 0 10px 25px rgba(0, 184, 148, .3);
}

.reset-btn:hover {
  box-shadow: 0 10px 25px rgba(108, 92, 231, .3);
}

.get-started-btn:active,
.login-btn:active,
.submit-btn:active,
.register-btn:active,
.reset-btn:active {
  transform: translateY(0);
}

/* Disabled buttons */
.submit-btn:disabled,
.register-btn:disabled,
.reset-btn:disabled {
  opacity: .6;
  cursor: not-allowed;
}

/* -----------------------------
   8) Socials / Links
   ----------------------------- */
.social-login,
.social-register {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.social-btn {
  flex: 1;
  padding: .75rem;
  border: 2px solid #e0e0e0;
  background: #fff;
  border-radius: 10px;
  cursor: pointer;
  transition: all .3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-size: .9rem;
  color: var(--dark-color);
  text-decoration: none;
}

.social-btn:hover {
  border-color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, .1);
}

.register-card .social-btn:hover {
  border-color: var(--register-color);
}

.social-btn i {
  font-size: 1.2rem;
}

.forgot-link,
.login-link a,
.signup-link a,
.countdown a,
.resend-btn {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  transition: color .3s ease;
}

.forgot-link:hover,
.signup-link a:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

.register-card .login-link a {
  color: var(--register-color);
}

.register-card .login-link a:hover {
  color: var(--register-secondary);
}

.reset-card .countdown a {
  color: var(--reset-color);
}

.resend-btn {
  background: none;
  border: none;
  text-decoration: underline;
  cursor: pointer;
}

.resend-btn:hover {
  color: var(--secondary-color);
}

.resend-btn:disabled {
  color: #6c757d;
  cursor: not-allowed;
  text-decoration: none;
}

/* -----------------------------
   9) Dividers / Alerts / Loaders
   ----------------------------- */
.divider {
  text-align: center;
  margin: 2rem 0 1.5rem;
  position: relative;
}

.divider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: #e0e0e0;
}

.divider span {
  background: rgba(255, 255, 255, .95);
  padding: 0 1rem;
  color: #6c757d;
  font-size: .85rem;
  position: relative;
}

.alert {
  border-radius: 10px;
  padding: .75rem 1rem;
  font-size: .9rem;
  display: none;
  animation: slideDown .3s ease;
  margin-bottom: 1.5rem;
}

.spinner-border {
  width: 1rem;
  height: 1rem;
  margin-left: .5rem;
  display: none;
}

/* Success blocks */
.success-animation {
  display: none;
  text-align: center;
  padding: 2rem;
}

.success-animation.show {
  display: block;
  animation: fadeIn .5s ease;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--success-color), #20c997);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  animation: scaleIn .5s ease;
}

.success-icon i {
  font-size: 2.5rem;
  color: #fff;
}

.register-card .success-icon {
  width: 100px;
  height: 100px;
}

.reset-card .success-icon {
  width: 100px;
  height: 100px;
}

/* Forgot page resend section */
.resend-section {
  text-align: center;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e0e0e0;
  display: none;
}

.resend-section.show {
  display: block;
}

.countdown {
  font-weight: 400;
  color: #6c757d;
  font-size: .9rem;
  text-align: center;
  margin-top: 1.5rem;
}

/* -----------------------------
   10) Floating shapes (background)
   ----------------------------- */
.floating-shapes {
  position: fixed;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
  pointer-events: none;
}

.shape {
  position: absolute;
  opacity: .1;
  animation: float-shape 20s infinite linear;
}

.shape-1 {
  width: 80px;
  height: 80px;
  background-color: var(--primary-color);
  border-radius: 50%;
  top: 20%;
  left: 10%;
  animation-duration: 25s;
}

.shape-2 {
  width: 120px;
  height: 120px;
  background-color: var(--secondary-color);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  top: 60%;
  right: 10%;
  animation-duration: 30s;
  animation-direction: reverse;
}

.shape-3 {
  width: 100px;
  height: 100px;
  background-color: var(--accent-color);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  bottom: 20%;
  left: 20%;
  animation-duration: 35s;
}

.shape-4{
    width: 100px;
    height: 100px;
    background-color: var(--register-color);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    top: 20%;
    right: 20%;
    animation-duration: 35s;
}

/* Page variations for shape colors */
.forgot-card~.floating-shapes .shape-3 {
  background-color: var(--warning-color);
}

.register-card~.floating-shapes .shape-1 {
  background-color: var(--register-color);
}

.register-card~.floating-shapes .shape-2 {
  background-color: var(--register-secondary);
}

.reset-card~.floating-shapes .shape-1 {
  background-color: var(--reset-color);
}

.reset-card~.floating-shapes .shape-2 {
  background-color: var(--reset-secondary);
}

/* -----------------------------
   11) Footer badge
   ----------------------------- */
.footer {
  padding: 1.5rem 0;
  text-align: center;
}

.badge-container {
  display: inline-block;
  padding: .6rem 1.5rem;
  background-color: rgba(255, 255, 255, .7);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, .05);
  transition: all .3s ease;
}

.badge-container:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, .1);
}

.copyright {
  font-weight: 500;
  font-size: .9rem;
  color: var(--dark-color);
  margin: 0;
}

/* -----------------------------
   12) Icons / feature circles
   ----------------------------- */
.icon-section {
  text-align: center;
  margin-bottom: 2rem;
}

.icon-container {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--warning-color), var(--accent-color));
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 15px 35px rgba(255, 107, 107, .2);
  position: relative;
}

.icon-container i {
  font-size: 3rem;
  color: #fff;
}

/* Page-specific icon variations */
.reset-card .icon-container {
  background: linear-gradient(135deg, var(--reset-color), var(--reset-secondary));
  box-shadow: 0 15px 35px rgba(108, 92, 231, .2);
  animation: rotate 20s linear infinite;
}

.reset-card .icon-container i {
  animation: counter-rotate 20s linear infinite;
}

.forgot-card .icon-container {
  animation: pulse 2s infinite;
}

.forgot-card .icon-container i {
  animation: shake 3s infinite;
}

/* -----------------------------
   13) Utilities
   ----------------------------- */
.form-row {
  display: flex;
  gap: 1rem;
}

.form-check {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.form-check-input {
  margin-right: .5rem;
}

.form-check-label {
  font-size: .9rem;
  color: var(--dark-color);
  cursor: pointer;
}

.form-check-label a {
  color: var(--register-color);
  text-decoration: none;
  font-weight: 500;
}

.form-check-label a:hover {
  text-decoration: underline;
}

/* Ripple (landing button) */
.ripple {
  position: absolute;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, .5);
  transform: scale(0);
  animation: ripple-animation .6s ease-out;
  pointer-events: none;
}

/* -----------------------------
   14) Media Queries
   ----------------------------- */
@media (max-width: 768px) {
  .site-url {
    font-size: 2rem;
  }

  .welcome-text {
    font-size: 1.2rem;
  }

  .department {
    font-size: 1.1rem;
  }

  .university {
    font-size: 1rem;
  }

  .get-started-btn {
    padding: .7rem 2rem;
    font-size: 1rem;
  }

  .logo {
    width: 120px;
    height: 120px;
  }
}

@media (max-width: 576px) {

  .login-card,
  .forgot-card,
  .register-card,
  .reset-card {
    padding: 2rem 1.5rem;
  }

  .login-title,
  .forgot-title,
  .register-title,
  .reset-title {
    font-size: 1.5rem;
  }

  .social-login,
  .social-register {
    flex-direction: column;
  }

  .form-row {
    flex-direction: column;
    gap: 0;
  }
}

/* -----------------------------
   15) Animations (once only)
   ----------------------------- */
@keyframes gradientShift {
  0% {
    background-position: 0% 50%
  }

  50% {
    background-position: 100% 50%
  }

  100% {
    background-position: 0% 50%
  }
}

@keyframes float {
  0% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-20px)
  }

  100% {
    transform: translateY(0)
  }
}

@keyframes shine {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg)
  }

  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg)
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(30px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes float-shape {
  0% {
    transform: translate(0, 0) rotate(0)
  }

  50% {
    transform: translate(30px, -30px) rotate(180deg)
  }

  100% {
    transform: translate(0, 0) rotate(360deg)
  }
}

@keyframes ripple-animation {
  to {
    transform: scale(4);
    opacity: 0
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 15px 35px rgba(255, 107, 107, .2)
  }

  50% {
    box-shadow: 0 15px 45px rgba(255, 107, 107, .3)
  }

  100% {
    box-shadow: 0 15px 35px rgba(255, 107, 107, .2)
  }
}

@keyframes shake {

  0%,
  90%,
  100% {
    transform: rotate(0)
  }

  92% {
    transform: rotate(-5deg)
  }

  94% {
    transform: rotate(5deg)
  }

  96% {
    transform: rotate(-5deg)
  }

  98% {
    transform: rotate(5deg)
  }
}

@keyframes rotate {
  from {
    transform: rotate(0)
  }

  to {
    transform: rotate(360deg)
  }
}

@keyframes counter-rotate {
  from {
    transform: rotate(0)
  }

  to {
    transform: rotate(-360deg)
  }
}

@keyframes scaleIn {
  from {
    transform: scale(0)
  }

  to {
    transform: scale(1)
  }
}

@keyframes fadeIn {
  from {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

@font-face {
    font-family: oldenglish;
    src: url("../fonts/oldenglishtextmt.ttf");
    font-weight: normal;
    font-style: normal;
}

.old_english {
    font-family: oldenglish, sans-serif;
    font-size: 32px;
}

@font-face {
    font-family: jameel;
    src: url("../fonts/jameel.ttf");
    font-weight: normal;
    font-style: normal;
}

.urdu {
    font-family: jameel, sans-serif;
    font-size: xx-large;
    direction: rtl;
}

.urdu_normal {
    font-family: jameel, sans-serif;
    direction: rtl;
}

.first {
    padding: 20px;
    text-align: justify;
    font-family: jameel, sans-serif;
    font-size: x-large;
    direction: rtl;
}

.second {
    padding: 20px;
    text-align: justify;
    font-family: jameel, sans-serif;
    font-size: large;
    direction: rtl;
}
