      *,
      *::before,
      *::after {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }

      :root {
        --color-primary: #1a237e;
        --color-primary-light: #3949ab;
        --color-primary-dark: #0d1642;
        --color-secondary: #bd9d6c;
        --color-secondary-light: #fbbf24;
        --color-accent: #6366f1;
        --color-text-dark: #1f2937;
        --color-text-medium: #4b5563;
        --color-text-light: #9ca3af;
        --color-white: #ffffff;
        --font-primary: "Cairo", sans-serif;
        --font-secondary: "Tajawal", sans-serif;
      }

      body {
        background: #0b0f2e;
        direction: rtl;
      }

      .congrats-section {
        position: relative;
        padding: 6rem 1.5rem;
        overflow: hidden;
        background: linear-gradient(
          145deg,
          #0d1642 0%,
          #1a237e 40%,
          #0d1642 100%
        );
      }

      .congrats-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image:
          radial-gradient(
            circle at 20% 30%,
            rgba(189, 157, 108, 0.12) 0%,
            transparent 50%
          ),
          radial-gradient(
            circle at 80% 70%,
            rgba(99, 102, 241, 0.1) 0%,
            transparent 50%
          );
        pointer-events: none;
      }

      .grid-lines {
        position: absolute;
        inset: 0;
        background-image:
          linear-gradient(rgba(189, 157, 108, 0.06) 1px, transparent 1px),
          linear-gradient(90deg, rgba(189, 157, 108, 0.06) 1px, transparent 1px);
        background-size: 60px 60px;
        pointer-events: none;
      }

      .orb {
        position: absolute;
        border-radius: 50%;
        filter: blur(80px);
        pointer-events: none;
        animation: floatOrb 8s ease-in-out infinite alternate;
      }
      .orb-1 {
        width: 400px;
        height: 400px;
        background: rgba(189, 157, 108, 0.1);
        top: -100px;
        right: -100px;
        animation-delay: 0s;
      }
      .orb-2 {
        width: 300px;
        height: 300px;
        background: rgba(99, 102, 241, 0.1);
        bottom: -80px;
        left: -80px;
        animation-delay: 3s;
      }
      .orb-3 {
        width: 200px;
        height: 200px;
        background: rgba(251, 191, 36, 0.07);
        top: 50%;
        left: 50%;
        animation-delay: 5s;
      }

      @keyframes floatOrb {
        from {
          transform: translate(0, 0) scale(1);
        }
        to {
          transform: translate(30px, -40px) scale(1.1);
        }
      }

      .particle {
        position: absolute;
        width: 6px;
        height: 6px;
        border-radius: 50%;
        pointer-events: none;
        animation: confettiFall linear infinite;
      }
      .particle:nth-child(1) {
        background: #fbbf24;
        top: -5%;
        left: 10%;
        animation-duration: 6s;
        animation-delay: 0s;
      }
      .particle:nth-child(2) {
        background: #bd9d6c;
        top: -5%;
        left: 25%;
        animation-duration: 7s;
        animation-delay: 1s;
        width: 4px;
        height: 4px;
      }
      .particle:nth-child(3) {
        background: #6366f1;
        top: -5%;
        left: 50%;
        animation-duration: 5s;
        animation-delay: 2s;
      }
      .particle:nth-child(4) {
        background: #fbbf24;
        top: -5%;
        left: 75%;
        animation-duration: 8s;
        animation-delay: 0.5s;
        width: 5px;
        height: 5px;
      }
      .particle:nth-child(5) {
        background: #bd9d6c;
        top: -5%;
        left: 90%;
        animation-duration: 6.5s;
        animation-delay: 3s;
      }
      .particle:nth-child(6) {
        background: #fbbf24;
        top: -5%;
        left: 40%;
        animation-duration: 9s;
        animation-delay: 1.5s;
        width: 3px;
        height: 3px;
      }
      .particle:nth-child(7) {
        background: #6366f1;
        top: -5%;
        left: 60%;
        animation-duration: 7.5s;
        animation-delay: 4s;
      }
      .particle:nth-child(8) {
        background: #bd9d6c;
        top: -5%;
        left: 80%;
        animation-duration: 5.5s;
        animation-delay: 2.5s;
        width: 7px;
        height: 7px;
      }

      @keyframes confettiFall {
        0% {
          transform: translateY(0) rotate(0deg);
          opacity: 1;
        }
        100% {
          transform: translateY(110vh) rotate(720deg);
          opacity: 0;
        }
      }


      .badge-line {
        flex: 1;
        height: 1px;
        background: linear-gradient(
          90deg,
          transparent,
          rgba(189, 157, 108, 0.5),
          transparent
        );
      }
      .badge-text {
        font-family: var(--font-secondary);
        font-size: 0.8rem;
        font-weight: 500;
        color: var(--color-secondary);
        letter-spacing: 2px;
        text-transform: uppercase;
        white-space: nowrap;
      }

      .congrats-title-wrap {
        text-align: center;
        margin-bottom: 3rem;
      }
      .congrats-script {
        font-family: "Brush Script MT", cursive;
        font-size: clamp(2.8rem, 6vw, 4.5rem);
        color: var(--color-secondary-light);
        line-height: 1;
        display: block;
        text-shadow: 0 0 40px rgba(251, 191, 36, 0.4);
        animation: shimmerText 3s ease-in-out infinite alternate;
      }
      @keyframes shimmerText {
        from {
          text-shadow: 0 0 20px rgba(251, 191, 36, 0.3);
        }
        to {
          text-shadow:
            0 0 60px rgba(251, 191, 36, 0.7),
            0 0 100px rgba(251, 191, 36, 0.3);
        }
      }

      .intro-text {
        text-align: center;
        max-width: 680px;
        margin: 0 auto 3.5rem;
        font-size: clamp(1rem, 2.5vw, 1.2rem);
        font-weight: 400;
        color: rgba(255, 255, 255, 0.8);
        line-height: 2;
      }

      .main-card {
        background: linear-gradient(
          135deg,
          rgba(255, 255, 255, 0.07) 0%,
          rgba(255, 255, 255, 0.03) 100%
        );
        border: 1px solid rgba(189, 157, 108, 0.25);
        border-radius: 2rem;
        padding: 3rem 2.5rem;
        backdrop-filter: blur(10px);
        position: relative;
        overflow: hidden;
        display: grid;
        grid-template-columns: auto 1fr;
        align-items: center;
      }

      .main-card::before,
      .main-card::after {
        content: "";
        position: absolute;
        width: 120px;
        height: 120px;
        border-radius: 50%;
        background: radial-gradient(
          circle,
          rgba(189, 157, 108, 0.15),
          transparent 70%
        );
        pointer-events: none;
      }
      .main-card::before {
        top: -40px;
        left: -40px;
      }
      .main-card::after {
        bottom: -40px;
        right: -40px;
      }

      .card-shimmer {
        position: absolute;
        inset: 0;
        background: linear-gradient(
          105deg,
          transparent 40%,
          rgba(189, 157, 108, 0.08) 50%,
          transparent 60%
        );
        background-size: 200% 100%;
        animation: cardSweep 4s ease-in-out infinite;
        pointer-events: none;
        border-radius: 2rem;
      }
      @keyframes cardSweep {
        0% {
          background-position: 200% 0;
        }
        100% {
          background-position: -200% 0;
        }
      }

      .photo-col {
        flex-shrink: 0;
      }

      .photo-wrapper {
        position: relative;
        width: 180px;
        top: -50px;
        left: -110px;
        height: 180px;
        margin: 30px auto;
      }
      .photo-ring {
        position: absolute;
        inset: -12px;
        border-radius: 50%;
        background: conic-gradient(
          var(--color-secondary-light),
          var(--color-secondary),
          var(--color-secondary-light),
          var(--color-secondary),
          var(--color-secondary-light)
        );
        animation: spinRing 6s linear infinite;
      }
      @keyframes spinRing {
        to {
          transform: rotate(360deg);
        }
      }
      .photo-ring-inner {
        position: absolute;
        inset: 3px;
        border-radius: 50%;
        background: #1a237e;
      }
      .photo-img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        border-radius: 50%;

        z-index: 2;
      }

      .info-col {
        min-width: 0;
      }

      .dr-name {
        font-family: var(--font-primary);
        font-size: clamp(1.8rem, 4vw, 2.8rem);
        font-weight: 900;
        color: var(--color-white);
        line-height: 1.2;
        margin-bottom: 0.5rem;
      }
      .dr-name span {
        color: var(--color-secondary-light);
        text-shadow: 0 0 20px rgba(251, 191, 36, 0.4);
      }

      .dr-title {
        font-size: 0.95rem;
        color: var(--color-secondary);
        font-weight: 500;
        margin-bottom: 1.5rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
      }
      .dr-title::before {
        content: "";
        width: 30px;
        height: 2px;
        background: var(--color-secondary);
        border-radius: 2px;
      }

      .achievement-badge {
        display: inline-flex;
        align-items: center;
        gap: 0.75rem;
        background: linear-gradient(
          135deg,
          rgba(251, 191, 36, 0.15),
          rgba(189, 157, 108, 0.1)
        );
        border: 1px solid rgba(251, 191, 36, 0.3);
        border-radius: 1rem;
        padding: 0.85rem 1.4rem;
        margin-bottom: 1.5rem;
      }
      .badge-icon {
        font-size: 1.8rem;
      }
      .badge-info {
      }
      .badge-label {
        font-size: 0.7rem;
        color: var(--color-secondary);
        text-transform: uppercase;
        letter-spacing: 1.5px;
        font-weight: 600;
      }
      .badge-value {
        font-size: 1.05rem;
        font-weight: 800;
        color: var(--color-secondary-light);
      }

      .body-text {
        font-size: 0.92rem;
        color: rgba(255, 255, 255, 0.7);
        line-height: 1.95;
        font-weight: 300;
      }

      /*  RESPONSIVE  */
      @media (max-width: 768px) {
        .photo-wrapper {
          left: 0;
          margin: 80px auto 0 auto;
        }
        .main-card {
          grid-template-columns: 1fr;
          text-align: center;
          padding: 2rem 1.5rem;
          gap: 2rem;
        }
        .dr-title {
          justify-content: center;
        }
        .achievement-badge {
          width: 100%;
          justify-content: center;
        }

        .photo-wrapper {
          width: 160px;
          height: 160px;
        }
        .body-text {
          text-align: right;
        }
        .congrats-section {
          padding: 4rem 1rem;
        }
      }

      @media (max-width: 480px) {
        .stat-item {
          min-width: 75px;
          padding: 0.6rem 0.8rem;
        }
      }