    /* ─── TOKENS ─────────────────────────────────────────── */
    :root {
      --primary: #0B1F6D;
      --secondary: #C63D8F;
      --accent: #6D4CFF;
      --dark: #081236;
      --text: #475569;
      --text-light: #94A3B8;
      --light: #FFFFFF;
      --light-bg: #F8FAFC;
      --border: #E2E8F0;

      --gradient: linear-gradient(135deg, #C63D8F 0%, #8B5CF6 50%, #0B1F6D 100%);
      --gradient-light: linear-gradient(135deg, #f2efff 0%, #fdf0f7 100%);
      --gradient-hero: linear-gradient(135deg, #0B1F6D 0%, #1a2f8a 40%, #2d1b69 100%);

      --shadow-sm: 0 4px 16px rgba(11, 31, 109, .06);
      --shadow-md: 0 8px 32px rgba(11, 31, 109, .10);
      --shadow-lg: 0 20px 60px rgba(11, 31, 109, .14);
      --shadow-card: 0 2px 12px rgba(11, 31, 109, .08);

      --radius-sm: 8px;
      --radius-md: 16px;
      --radius-lg: 24px;
      --radius-xl: 32px;

      --font-display: 'Syne', sans-serif;
      --font-body: 'Inter', sans-serif;

      --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
/* ==========================================
   GLOBAL TYPOGRAPHY
   typography.css
========================================== */

/* Google Fonts
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Syne:wght@600;700;800&display=swap');
*/

/* Base */
html{
    font-size:16px;
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    font-size:16px;
    font-weight:400;
    line-height:1.7;
    color:#475569;
    -webkit-font-smoothing:antialiased;
    -moz-osx-font-smoothing:grayscale;
    text-rendering:optimizeLegibility;
}

/* Selection */
::selection{
    background:#C63D8F;
    color:#fff;
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6{
    font-family:'Syne',sans-serif;
    font-weight:700;
    line-height:1.2;
    letter-spacing:-0.02em;
    margin:0 0 16px;
}

/* Typography Scale */

h1{
    font-size:clamp(42px,5vw,64px);
    font-weight:800;
}

h2{
    font-size:clamp(34px,4vw,48px);
    font-weight:800;
}

h3{
    font-size:clamp(26px,3vw,32px);
}

h4{
    font-size:24px;
}

h5{
    font-size:20px;
}

h6{
    font-size:18px;
}

/* Paragraphs */

p{
    font-size:16px;
    line-height:1.8;
    margin:0 0 20px;
}

/* Links */

a{
    text-decoration:none;
    transition:.3s ease;
}

/* Lists */

ul,
ol{
    margin:0 0 20px 22px;
}

li{
    font-size:16px;
    line-height:1.8;
    color:#475569;
}

/* Strong */

strong,
b{
    font-weight:700;
    color:#081236;
}

/* Small Text */

small{
    font-size:13px;
}

/* Labels */

label{
    display:block;
    font-size:14px;
    font-weight:600;
    margin-bottom:8px;
    color:#081236;
}

/* Inputs */

input,
textarea,
select,
button{
    font-family:'Inter',sans-serif;
    font-size:15px;
}

button{
    font-weight:600;
}

/* Placeholder */

::placeholder{
    font-size:15px;
    color:#94A3B8;
}

/* Blockquote */

blockquote{
    font-size:20px;
    line-height:1.7;
    font-style:italic;
    border-left:4px solid #C63D8F;
    padding-left:20px;
    margin:30px 0;
}

/* Code */

code,
pre{
    font-family:Consolas,monospace;
}

/* Responsive */

@media (max-width:992px){

    body{
        font-size:15px;
    }

    p,
    li{
        font-size:15px;
    }

    h1{
        font-size:48px;
    }

    h2{
        font-size:40px;
    }

    h3{
        font-size:28px;
    }

}

@media (max-width:768px){

    body{
        font-size:15px;
    }

    p,
    li{
        font-size:15px;
        line-height:1.75;
    }

    h1{
        font-size:38px;
    }

    h2{
        font-size:32px;
    }

    h3{
        font-size:26px;
    }

    h4{
        font-size:22px;
    }

}

@media (max-width:480px){

    body{
        font-size:14px;
    }

    p,
    li{
        font-size:14px;
    }

    h1{
        font-size:32px;
    }

    h2{
        font-size:28px;
    }

    h3{
        font-size:22px;
    }

    h4{
        font-size:20px;
    }

}
    /* ─── RESET & BASE ───────────────────────────────────── */
    *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
      font-size: 16px;
    }

    body {
      font-family: var(--font-body);
      color: var(--text);
      background: var(--light);
      line-height: 1.6;
      overflow-x: hidden;
    }

    canvas {
      position: fixed !important;
      inset: 0;
      z-index: 999999 !important;
      pointer-events: none !important;
    }

    .modal {
      z-index: 1080 !important;
    }

    .modal-backdrop {
      z-index: 1070 !important;
    }

    .top-bar {
      background: var(--primary);
    }

    .top-bar a {
      color: #fff;
      font-size: 14px;
      transition: .3s;
    }

    .top-bar a:hover {
      color: #D96AB0;
    }

    .separator {
      margin: 0 15px;
    }

    .social-icons {
      display: flex;
      justify-content: flex-end;
      gap: 10px;
    }

    .social-icons a {
      width: 38px;
      height: 38px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      background: rgba(255, 255, 255, .12);
      color: #fff;
      transition: .3s;
    }

    .social-icons a:hover {
      background: var(--gradient);
      transform: translateY(-3px);
    }

    .navbar {
      background: #fff;
      padding: 18px 0;
      box-shadow: var(--shadow-sm);
    }

    .nav-link {
      color: var(--dark) !important;
      font-weight: 600;
      padding: 14px 18px !important;
      transition: .3s;
    }

    .nav-link:hover,
    .nav-link.active {
      color: var(--secondary) !important;
    }

    .mega-menu {
      width: min(900px, 95vw);
      max-width: 95vw;

      padding: 15px 30px;
      border: none;
      border-radius: 24px;
      box-shadow: var(--shadow-lg);

      left: -150% !important;
      /* transform: translateX(-20%); */
    }

    .mega-menu2 {
      width: min(375px, 95vw);
      max-width: 40vw;
      left: 0% !important;
      padding: 15px 0 !important;
    }

    .mega-menu2 img {
      width: 40px;
      height: 40px;
      border-radius: 50%;
    }

    .mega-menu2 .dropdown-item:hover {
      background: transparent !important;
    }

    .mega-menu h6 {
      color: var(--primary);
      font-weight: 700;
      margin: 18px 0;
    }

    .university-item {
      padding: 14px 18px;
      border-radius: 12px;
      transition: .3s;
      margin-bottom: 0px;
    }

    .university-item:hover {
      background: #f5f7ff;
      transform: translateX(6px);
    }

    .uni-name {
      font-size: 16px;
      font-weight: 600;
      color: #0B1F6D;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .uni-name i {
      color: #C63D8F;
      font-size: 15px;
    }

    .uni-program {
      margin-top: 8px;
      margin-left: 25px;
    }

    .uni-program span {
      display: inline-block;
      padding: 3px 10px;
      margin-right: 6px;
      margin-bottom: 4px;
      font-size: 11px;
      font-weight: 600;
      border-radius: 30px;
      background: #eef2ff;
      color: #0B1F6D;
      border: 1px solid #d8e2ff;
    }

    .dropdown-item {
      padding: 6px 15px;
      border-radius: 12px;
      transition: .3s;
    }

    .dropdown-item:hover {
      background: transparent;
      color: var(--secondary);
    }

    .consultation-btn {
      background: var(--gradient);
      color: #fff;
      border: none;
      padding: 14px 26px;
      border-radius: 14px;
      font-weight: 700;
      transition: .3s;
    }

    .consultation-btn:hover {
      color: #fff;
      transform: translateY(-3px);
      box-shadow: 0 15px 35px rgba(198, 61, 143, .25);
    }

    .site-footer {
      background: var(--dark);
      color: #e2e8f0;
      padding-top: 80px;
      position: relative;
      overflow: hidden;
    }

    .site-footer::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 3px;
      background: var(--gradient);
    }

    .navbar-brand img {
      height: 70px;
      width: auto;
      display: block;

      image-rendering: auto;
      backface-visibility: hidden;
      transform: translateZ(0);
    }

    .navbar {
      padding: 10px 0;
    }

    .footer-about {
      font-size: 14px;
      line-height: 1.7;
      color: #cbd5e1;
      max-width: 90%;
    }

    .site-footer h5 {
      font-size: 16px;
      font-weight: 600;
      margin-bottom: 18px;
      color: #fff;
      position: relative;
    }

    .footer-links,
    .footer-contact {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .footer-links li,
    .footer-contact li {
      margin-bottom: 12px;
    }

    .footer-links a,
    .footer-contact a {
      text-decoration: none;
      color: #94a3b8;
      font-size: 14px;
      transition: .3s;
      display: inline-block;
      position: relative;
    }

    .footer-links a::before {
      content: "";
      width: 0;
      height: 1px;
      background: var(--secondary);
      position: absolute;
      bottom: -2px;
      left: 0;
      transition: .3s;
    }

    .footer-links a:hover {
      color: #fff;
      transform: translateX(6px);
    }

    .footer-links a:hover::before {
      width: 100%;
    }

    .footer-social {
      display: flex;
      gap: 10px;
      margin-top: 20px;
      flex-wrap: wrap;
    }

    .footer-social a {
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.06);
      color: #fff;
      transition: .3s;
      border: 1px solid rgba(255, 255, 255, 0.08);
    }

    .footer-social a:hover {
      background: var(--gradient);
      transform: translateY(-4px) scale(1.05);
    }

    .footer-bottom {
      margin-top: 60px;
      padding: 18px 0;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      font-size: 13px;
      color: #94a3b8;
    }

    .footer-bottom a {
      color: #94a3b8;
      text-decoration: none;
      margin: 0 6px;
    }

    .footer-bottom a:hover {
      color: #fff;
    }

    .section-title {
      font-size: 48px;
      font-weight: 800;
      color: var(--primary);
    }

    .section-title span {
      color: var(--secondary);
    }

    /* hero section */
    /* .edf-hero-section {
      background: var(--light-bg);
      padding: 4rem 0;
      position: relative;
      overflow: hidden;
    }

    .edf-hero-content {
      position: relative;
      z-index: 2;
    }

    .edf-hero-title {
      font-size: 3rem;
      font-weight: 800;
      color: var(--dark);
      line-height: 1.1;
      margin-bottom: 2rem;
      animation: fadeUp 0.8s ease both;
    }

    .edf-hero-actions {
      display: flex;
      gap: 1.5rem;
      flex-wrap: wrap;
    }

    /* BUTTON BASE */
    .edf-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: .875rem 1rem;
      border-radius: 10px;
      font-weight: 700;
      font-size: 1rem;
      text-decoration: none;
      transition: all 0.3s ease;
    }

    /* PRIMARY */
    .edf-btn--primary {
      background: var(--gradient);
      color: #fff;
      box-shadow: 0 10px 25px rgba(198, 61, 143, 0.25);
    }

    .edf-btn--primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 18px 40px rgba(109, 76, 255, 0.35);
    }

    /* OUTLINE */
    .edf-btn--outline {
      background: #fff;
      border: 2px solid rgba(11, 31, 109, 0.15);
      color: var(--primary);
    }

    .edf-btn--outline:hover {
      background: var(--light-bg);
      border-color: var(--secondary);
      color: var(--secondary);
      transform: translateY(-3px);
    }

    /* IMAGE */
    .edf-hero-img {
      border-radius: 24px;
      width: 100%;
      transform: translateY(-5px);
      box-shadow: var(--shadow-lg);
    }

    /* ANIMATION */
    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(20px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .edf-btn i {
      margin-right: 8px;
      font-size: 1.4rem;
    }

    .edf-btn--outline i {
      margin-right: 0;
      margin-left: 8px;
    }

    .edf-hero-meta {
      margin-top: 2rem;
      font-size: 1.4rem;
      color: var(--text);
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .edf-hero-meta i {
      color: var(--secondary);
    }

    .course-section {
      background: #f8fafc;
    }

    */
    /* ===== HEADER ===== */

    .section-header h2 {
      font-size: 28px;
    }

    .see-more-btn {
      background: linear-gradient(45deg, #6366f1, #ec4899);
      color: #fff;
      padding: 10px 18px;
      border-radius: 10px;
      font-weight: 500;
      transition: 0.3s;
      border: none;
    }

    .see-more-btn:hover {
      transform: translateY(-3px);
      color: #fff;
      box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
    }

    /* ===== PREMIUM CARD (BRAND SYSTEM) ===== */
    .neo-card {
      background: var(--light);
      border-radius: 18px;
      padding: 20px;

      display: flex;
      align-items: center;
      justify-content: space-between;

      border: 1px solid rgba(11, 31, 109, 0.08);
      box-shadow: var(--shadow-sm);

      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }

    /* left accent line */
    .neo-card::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0;
      width: 4px;
      height: 100%;
      background: var(--gradient);
    }

    /* hover */
    .neo-card:hover {
      transform: translateY(-10px);
      box-shadow: var(--shadow-lg);
      border-color: rgba(198, 61, 143, 0.25);
    }

    /* ICON */
    .neo-icon {
      width: 55px;
      height: 55px;
      border-radius: 14px;

      display: flex;
      align-items: center;
      justify-content: center;

      background: var(--gradient);
      color: #fff;
      font-size: 20px;

      box-shadow: 0 10px 20px rgba(198, 61, 143, 0.25);
    }

    /* TEXT */
    .neo-content {
      flex: 1;
      padding: 0 15px;
    }

    .neo-content h5 {
      font-size: 15px;
      font-weight: 700;
      margin: 0;
      color: var(--primary);
    }

    .neo-content p {
      margin: 3px 0 0;
      font-size: 13px;
      color: var(--text);
    }

    /* arrow */
    .neo-arrow {
      width: 38px;
      height: 38px;
      border-radius: 50%;

      background: var(--light-bg);
      color: var(--primary);

      display: flex;
      align-items: center;
      justify-content: center;

      transition: 0.3s ease;
    }

    .neo-card:hover .neo-arrow {
      background: var(--primary);
      color: #fff;
      transform: rotate(45deg);
    }

    .prog-card {
      background: #fff;
      border-radius: 18px;
      padding: 30px 20px;
      text-align: center;

      border: 1px solid rgba(11, 31, 109, 0.08);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);

      transition: 0.3s ease;
      cursor: pointer;
    }

    .prog-card i {
      font-size: 28px;
      color: var(--primary);
      margin-bottom: 10px;
    }

    .prog-card:hover {
      transform: translateY(-10px);
      box-shadow: var(--shadow-lg);
    }

    .course-slide-card {
      background: var(--light);
      border-radius: 18px;
      padding: 20px;
      height: 180px;
      position: relative;
      cursor: pointer;
      transition: 0.4s ease;
      box-shadow: var(--shadow-sm);
      overflow: hidden;
      border: 1px solid rgba(11, 31, 109, 0.06);
    }

    /* hover premium 3D */
    .course-slide-card:hover {
      transform: translateY(-8px) scale(1.03);
      box-shadow: var(--shadow-lg);
    }

    /* ICON */
    .course-icon {
      width: 45px;
      height: 45px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;

      background: var(--gradient);
      color: #fff;
      font-size: 18px;
      margin-bottom: 12px;

      transition: 0.3s;
    }

    .course-slide-card:hover .course-icon {
      transform: rotate(8deg) scale(1.1);
    }

    /* TITLE */
    .course-title {
      font-size: 16px;
      font-weight: 700;
      color: var(--primary);
      margin: 0;
    }

    /* DESC */
    .course-desc {
      font-size: 13px;
      color: var(--text);
      margin-top: 6px;
    }

    /* ARROW */
    .course-arrow {
      position: absolute;
      right: 15px;
      bottom: 15px;
      width: 35px;
      height: 35px;
      border-radius: 50%;

      display: flex;
      align-items: center;
      justify-content: center;

      background: #f1f5f9;
      color: var(--primary);

      transition: 0.3s ease;
    }

    .course-slide-card:hover .course-arrow {
      background: var(--gradient);
      color: #fff;
      transform: translateX(5px) rotate(45deg);
    }

    .edf-modal .modal-content {
      border: none;
      border-radius: 22px;
      overflow: hidden;
      background: var(--light);
      box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
    }

    .edf-modal-header {
      background: var(--gradient);
      color: #fff;
      padding: 22px 28px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      border: none;
    }

    .edf-modal-title {
      font-size: 22px;
      font-weight: 800;
      margin: 0;
    }

    .edf-modal-subtitle {
      font-size: 13px;
      opacity: 0.85;
      margin-top: 4px;
    }

    .edf-modal-header .btn-close {
      filter: invert(1);
      opacity: 0.9;
    }

    .edf-modal-body {
      padding: 28px;
      background: #f8fafc;
    }

    .edf-modal-footer {
      background: #fff;
      padding: 16px 24px;
      border-top: 1px solid rgba(11, 31, 109, 0.08);
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .edf-footer-text {
      font-size: 13px;
      color: var(--text);
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .edf-close-btn {
      background: var(--gradient);
      color: #fff;
      border: none;
      padding: 10px 18px;
      border-radius: 10px;
      font-weight: 600;
      cursor: pointer;
      transition: 0.3s ease;
    }

    .edf-close-btn:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow-lg);
    }

    .edf-modal .modal-dialog {
      transform: scale(0.96);
      transition: 0.25s ease;
    }

    .edf-modal.show .modal-dialog {
      transform: scale(1);
    }

    @media (max-width: 768px) {
      .edf-modal-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
      }

      .edf-modal-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
      }

      .edf-modal-body {
        padding: 18px;
      }
    }

    /* program deatls */
    .page-hero {
      background: var(--gradient);
      padding: 120px 0 80px;
      position: relative;
      overflow: hidden;
    }

    .page-hero-content {
      position: relative;
      z-index: 1;
    }

    .breadcrumb-item a {
      color: rgba(255, 255, 255, 0.7);
    }

    .breadcrumb-item.active {
      color: white;
    }

    .breadcrumb-item+.breadcrumb-item::before {
      color: rgba(255, 255, 255, 0.5);
    }

    .detail-card {
      background: var(--light);
      border-radius: var(--radius-md);
      padding: 32px;
      box-shadow: var(--shadow-sm);
      border: 1px solid rgba(11, 31, 109, 0.07);
      margin-bottom: 24px;
    }

    .highlight-box {
      background: linear-gradient(135deg, rgba(109, 76, 255, 0.06), rgba(198, 61, 143, 0.06));
      border-left: 4px solid var(--accent);
      border-radius: 0 var(--radius-md) var(--radius-md) 0;
      padding: 20px 24px;
      margin-bottom: 16px;
    }

    .meta-pill {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: rgba(109, 76, 255, 0.08);
      color: var(--accent);
      padding: 6px 14px;
      border-radius: 100px;
      font-size: 0.82rem;
      font-weight: 600;
      margin: 4px;
    }

    .btn-grad {
      background: var(--gradient);
      color: white;
      border: none;
      padding: 14px 32px;
      border-radius: 50px;
      font-weight: 700;
      font-size: 0.95rem;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: var(--transition);
      box-shadow: 0 6px 24px rgba(198, 61, 143, 0.3);
    }

    .btn-grad:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 36px rgba(198, 61, 143, 0.4);
      color: white;
    }

    .check-list {
      list-style: none;
      padding: 0;
    }

    .check-list li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      padding: 8px 0;
      border-bottom: 1px solid rgba(11, 31, 109, 0.05);
      font-size: 0.9rem;
    }

    .check-list li:last-child {
      border-bottom: none;
    }

    .check-list li i {
      color: var(--secondary);
      margin-top: 3px;
      flex-shrink: 0;
    }

    /* Simple navbar for detail page */
    .detail-nav {
      background: var(--dark);
      padding: 14px 0;
      position: sticky;
      top: 0;
      z-index: 100;
    }

    .brand-name {
      font-family: var(--font-display);
      font-weight: 800;
      font-size: 1.15rem;
      color: white;
    }

    .brand-name span {
      color: var(--secondary);
    }

    .brand-logo-box {
      width: 36px;
      height: 36px;
      background: var(--gradient);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.9rem;
      font-family: var(--font-display);
      font-weight: 800;
      color: white;
    }

    /* =========================
PROGRAM PAGE
========================= */
    /* ==========================================
PROGRAM PAGE PREMIUM V2
========================================== */

    .program-page {
      overflow: hidden;
      background: #fff;
    }

    .pg-container {
      max-width: 1280px;
      margin: auto;
      padding: 0 24px;
    }

    /* ==========================================
HERO
========================================== */

    .pg-hero {
      position: relative;
      padding: 70px 0 50px;

      background: var(--gradient-light)
    }

    .pg-hero__inner {
      display: grid;
      grid-template-columns: 1.2fr 420px;
      gap: 50px;
      align-items: center;
    }

    .pg-breadcrumb {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      list-style: none;
      padding: 0;
      margin: 0 0 18px;
      color: #94A3B8;
      font-size: 14px;
    }

    .pg-duration-pill {
      display: inline-flex;
      align-items: center;
      padding: 10px 18px;
      border-radius: 999px;
      background: rgba(109, 76, 255, .08);
      color: var(--accent);
      font-weight: 700;
      margin-bottom: 20px;
    }

    .pg-hero__title {
      font-size: 58px;
      font-weight: 900;
      line-height: 1.05;
      letter-spacing: -2px;
      color: var(--dark);
      margin-bottom: 18px;
    }

    .pg-hero__tagline p {
      color: var(--text);
      line-height: 1.8;
      margin-bottom: 10px;
    }

    .pg-bullets {
      list-style: none;
      padding: 0;
      margin: 24px 0;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 14px;
    }

    .pg-bullets li {
      display: flex;
      gap: 10px;
      align-items: flex-start;
      color: #334155;
      font-weight: 500;
    }

    .pg-bullets i {
      color: var(--accent);
    }

    .pg-hero__cta {
      display: flex;
      gap: 12px;
      margin-top: 24px;
    }

    /* ==========================================
BUTTONS
========================================== */

    .pg-btn {
      border: none;
      border-radius: 14px;
      cursor: pointer;
      font-weight: 700;
      transition: .3s;
    }

    .pg-btn--primary {
      padding: 15px 28px;
      background: var(--gradient);
      color: #fff;
      box-shadow: 0 15px 35px rgba(109, 76, 255, .22);
    }

    .pg-btn--primary:hover {
      transform: translateY(-3px);
    }

    .pg-btn--ghost {
      padding: 15px 28px;
      background: #fff;
      border: 1px solid #E2E8F0;
    }

    .pg-btn--ghost:hover {
      background: #F8FAFC;
    }

    .pg-btn--full {
      width: 100%;
    }

    /* ==========================================
HERO CARD
========================================== */

    .pg-hero__card {
      background: #fff;
      border-radius: 30px;
      overflow: hidden;
      box-shadow:
        0 25px 60px rgba(11, 31, 109, .08);
      border: 1px solid #EEF2FF;
    }

    .pg-hero__img {
      padding: 18px;
    }

    .pg-hero__img img {
      width: 100%;
      height: 220px;
      object-fit: cover;
      border-radius: 20px;
    }

    .pg-card-content {
      padding: 0 20px 20px;
    }

    #cardTitle {
      font-size: 28px;
      font-weight: 800;
      color: var(--dark);
      margin-bottom: 20px;
      line-height: 1.3;
    }

    .pg-share {
      padding: 18px 20px;
      border-top: 1px solid #F1F5F9;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .pg-share span {
      font-weight: 600;
    }

    .pg-share__icon {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      background: #F8FAFC;
      color: var(--dark);
      transition: .3s;
    }

    .pg-share__icon:hover {
      background: var(--accent);
      color: #fff;
    }

    /* ==========================================
SECTIONS
========================================== */

    .pg-section {
      padding: 70px 0;
    }

    .pg-section__title {
      font-size: 40px;
      font-weight: 900;
      color: var(--dark);
      margin-bottom: 14px;
    }

    .pg-section__title:after {
      content: "";
      display: block;
      width: 70px;
      height: 4px;
      border-radius: 20px;
      margin-top: 10px;
      background: var(--gradient);
    }

    .pg-section__intro {
      color: var(--text);
      line-height: 1.8;
      margin-bottom: 28px;
    }

    /* OVERVIEW */

    .pg-overview-card {
      background: #fff;
      padding: 35px;
      border-radius: 24px;
      border: 1px solid #EEF2FF;
      box-shadow: 0 10px 30px rgba(11, 31, 109, .04);
    }

    .pg-overview-card p {
      color: var(--text);
      line-height: 1.9;
    }

    /* 
CARDS*/
    .custom-highlight {

      background: var(--gradient);
    }

    .pg-highlights {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .pg-highlight-card {
      position: relative;
      background: #fff;
      padding: 32px;
      border-radius: 24px;
      border: 1px solid #EEF2FF;

      overflow: hidden;

      box-shadow: 0 6px 20px rgba(11, 31, 109, .04);

      transition: .35s ease;
    }


    /* Decorative Shape Inside Card */
    .pg-highlight-card:after {
      content: "";
      position: absolute;

      top: -35px;
      right: -35px;

      width: 110px;
      height: 110px;

      border-radius: 28px;

      background: var(--gradient);

      opacity: .06;

      transform: rotate(20deg);
    }

    .pg-highlight-card:hover {
      transform: translateY(-5px);

      box-shadow: 0 12px 30px rgba(11, 31, 109, .08);

      border-color: rgba(109, 76, 255, .15);
    }

    .pg-highlight-card h4 {
      position: relative;
      z-index: 2;

      font-size: 22px;
      font-weight: 700;

      color: var(--dark);

      margin-bottom: 12px;

      line-height: 1.3;
    }

    .pg-highlight-card p {
      position: relative;
      z-index: 2;

      color: var(--text);

      line-height: 1.8;

      font-size: 15px;
    }

    /* ==========================================
WHY CHOOSE
========================================== */

    .pg-why-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
    }

    .pg-why-card {
      background: #fff;
      padding: 30px;
      border-radius: 24px;
      border-left: 4px solid var(--accent);
      box-shadow: 0 10px 25px rgba(11, 31, 109, 0.241);
      transition: .3s;
    }

    .pg-why-card:hover {
      transform: translateY(-4px);
    }

    .pg-why-card h4 {
      font-size: 22px;
      color: var(--dark);
      margin-bottom: 10px;
    }

    .pg-why-card p {
      color: var(--text);
      line-height: 1.8;
    }

    /* ==========================================
TWO COLUMN
========================================== */

    .pg-two-col {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
    }

    .pg-check-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .pg-check-list li {
      display: flex;
      gap: 12px;
      margin-bottom: 14px;
      color: var(--text);
      line-height: 1.8;
    }

    .pg-check-list i {
      color: var(--accent);
      margin-top: 4px;
    }

    /* ==========================================
SYLLABUS
========================================== */
    .pg-syllabus {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 22px;
    }

    .pg-syllabus-card {
      position: relative;

      background: #fff;

      padding: 35px;

      border-radius: 28px;

      border: 1px solid rgba(109, 76, 255, .08);

      overflow: hidden;

      box-shadow: 0 8px 25px rgba(11, 31, 109, .04);

      transition: .35s ease;
    }

    /* Top Right Shape */
    .pg-syllabus-card::before {
      content: "";

      position: absolute;

      width: 140px;
      height: 140px;

      top: -55px;
      right: -55px;

      border-radius: 35px;

      background: var(--gradient);

      opacity: .05;

      transform: rotate(35deg);
    }

    /* Bottom Left Glow */
    .pg-syllabus-card::after {
      content: "";

      position: absolute;

      width: 120px;
      height: 120px;

      left: -60px;
      bottom: -60px;

      border-radius: 50%;

      background: #C63D8F;

      opacity: .04;

      filter: blur(25px);
    }

    .pg-syllabus-card:hover {
      transform: translateY(-6px);

      border-color: rgba(109, 76, 255, .15);

      box-shadow: 0 18px 40px rgba(11, 31, 109, .08);
    }

    .pg-syllabus-card h4 {
      position: relative;
      z-index: 2;

      font-size: 22px;
      font-weight: 700;

      color: var(--dark);

      margin-bottom: 14px;

      line-height: 1.3;
    }

    .pg-syllabus-card p {
      position: relative;
      z-index: 2;

      color: var(--text);

      line-height: 1.9;

      font-size: 15px;
    }

    /* ==========================================
RESPONSIVE
========================================== */

    @media(max-width:991px) {

      .pg-hero__inner,
      .pg-two-col {
        grid-template-columns: 1fr;
      }

      .pg-highlights,
      .pg-why-grid,
      .pg-syllabus {
        grid-template-columns: 1fr;
      }

      .pg-bullets {
        grid-template-columns: 1fr;
      }

      .pg-hero__title {
        font-size: 42px;
      }

      .pg-section {
        padding: 50px 0;
      }

      .pg-section__title {
        font-size: 32px;
      }
    }

    .pg-stats {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 25px;
      margin: 80px auto;
    }

    .pg-stat {
      background: #fff;
      padding: 35px;
      border-radius: 24px;
      text-align: center;
      box-shadow: 0 20px 50px rgba(11, 31, 109, .08);
    }

    .pg-stat h3 {
      font-size: 48px;
      font-weight: 900;
      background: var(--gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .pg-stat span {
      color: #64748B;
    }

    .pg-cta {
      padding: 100px 0;
    }

    .pg-cta-box {
      background: var(--gradient);
      border-radius: 40px;
      padding: 80px;
      text-align: center;
      color: #fff;
    }

    .pg-cta-box h2 {
      font-size: 54px;
      margin-bottom: 20px;
    }

    .pg-cta-box p {
      max-width: 700px;
      margin: auto;
      margin-bottom: 30px;
      opacity: .9;
    }

    .pg-cta-box .pg-btn {
      background: #fff;
      color: #081236;
    }

    .pg-hero__card {
      background: #fff;
      border-radius: 32px;
      overflow: hidden;
      box-shadow:
        0 40px 80px rgba(11, 31, 109, .12);
    }

    .pg-hero__img img {
      height: 320px;
      width: 100%;
      object-fit: cover;
    }

    .pg-card-content {
      padding: 30px;
    }

    #cardTitle {
      font-size: 32px;
      font-weight: 800;
      margin-bottom: 25px;
      color: #081236;
    }

    /*=================================================
CONTACT
=================================================*/

    .contact-section {
      padding: 90px 0;
      background: linear-gradient(180deg, #fff, #f8faff);
      position: relative;
    }

    .contact-container {
      max-width: 1300px;
      margin: auto;
      display: grid;
      grid-template-columns: 1fr 520px;
      gap: 70px;
      align-items: center;
      padding: 0 20px;
    }

    /*--------------------------------*/

    .contact-badge {

      display: inline-flex;
      align-items: center;
      gap: 8px;

      padding: 8px 18px;

      border-radius: 50px;

      background: rgba(198, 61, 143, .08);

      color: var(--secondary);

      font-size: 13px;
      font-weight: 600;
    }

    .contact-title {

      font-size: 34px;
      font-weight: 700;

      color: var(--dark);

      line-height: 1.25;

      margin: 18px 0;
    }

    .contact-description {

      font-size: 15px;

      color: var(--text);

      line-height: 1.9;

      max-width: 620px;

      margin-bottom: 35px;
    }

    /*=================================================
OFFICES
=================================================*/

    .office-wrapper {

      display: grid;

      grid-template-columns: repeat(2, 1fr);

      gap: 20px;
    }

    .office-card {

      background: #fff;

      border-radius: 18px;

      padding: 24px;

      border: 1px solid rgba(11, 31, 109, .08);

      box-shadow: 0 15px 35px rgba(0, 0, 0, .05);

      transition: .35s;
    }

    .office-card:hover {

      transform: translateY(-6px);

      box-shadow: 0 20px 45px rgba(0, 0, 0, .08);
    }

    .office-header {

      display: flex;

      align-items: center;

      gap: 14px;

      margin-bottom: 22px;
    }

    .office-header h4 {

      margin: 0;

      font-size: 17px;

      color: var(--dark);
    }

    .office-header span {

      font-size: 13px;

      color: var(--text);
    }

    .office-flag {

      width: 52px;
      height: 52px;

      border-radius: 15px;

      display: flex;

      align-items: center;

      justify-content: center;

      color: #fff;

      font-size: 20px;
    }

    .office-flag.india {

      background: linear-gradient(135deg, #ff9933, #138808);
    }

    .office-flag.usa {

      background: var(--gradient);
    }

    .contact-item-small {

      display: flex;

      align-items: flex-start;

      gap: 14px;

      margin-bottom: 18px;

      font-size: 14px;

      color: var(--text);

      line-height: 1.7;
    }

    .contact-item-small i {

      width: 18px;

      color: var(--secondary);

      margin-top: 4px;
    }

    /* =========================================
   CONTACT RESPONSIVE
========================================= */

@media (max-width: 1100px) {

    .contact-container {
        grid-template-columns: 1fr 440px;
        gap: 40px;
    }

    .office-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {

    .contact-section {
        padding: 70px 0;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 50px;
        align-items: stretch;
    }

    .contact-info {
        width: 100%;
    }

    .office-wrapper {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }

    .contact-form-wrapper {
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 600px) {

    .contact-section {
        padding: 50px 0;
    }

    .contact-container {
        padding: 0 16px;
        gap: 35px;
    }

    .contact-title {
        font-size: 28px;
    }

    .contact-description {
        font-size: 14px;
        line-height: 1.7;
        margin-bottom: 25px;
    }

    .office-wrapper {
        grid-template-columns: 1fr;
    }

    .office-card {
        padding: 20px;
        border-radius: 15px;
    }

    .office-flag {
        width: 46px;
        height: 46px;
        flex-shrink: 0;
    }

    .contact-grid {
        grid-template-columns: 1fr !important;
    }

    .contact-form-wrapper {
        padding: 25px 20px;
    }

    .contact-form-title {
        font-size: 24px;
    }
}

@media (max-width: 380px) {

    .contact-container {
        padding: 0 12px;
    }

    .contact-title {
        font-size: 25px;
    }

    .office-card {
        padding: 17px;
    }

    .contact-item-small {
        font-size: 13px;
        gap: 10px;
    }

    .contact-form-wrapper {
        padding: 22px 15px;
    }
}
    /*=================================================
FORM
=================================================*/

    .contact-form-wrapper {

      background: rgba(255, 255, 255, .96);

      backdrop-filter: blur(20px);

      padding: 38px;

      border-radius: 22px;

      border: 1px solid rgba(198, 61, 143, .10);

      box-shadow: 0 25px 60px rgba(11, 31, 109, .08);

      position: relative;
    }

    .contact-form-wrapper::before {

      content: "";

      position: absolute;

      left: 0;

      top: 0;

      width: 100%;

      height: 4px;

      background: var(--gradient);

      border-radius: 22px 22px 0 0;
    }

    .contact-form-badge {

      display: inline-block;

      padding: 6px 16px;

      background: rgba(109, 76, 255, .08);

      color: var(--primary);

      border-radius: 50px;

      font-size: 12px;

      font-weight: 600;

      margin-bottom: 12px;
    }

    .contact-form-title {

      font-size: 24px;

      font-weight: 700;

      color: var(--dark);

      line-height: 1.4;

      margin-bottom: 25px;
    }

    .contact-form {

      display: flex;

      flex-direction: column;

      gap: 18px;
    }

    .contact-grid {

      display: grid;

      grid-template-columns: repeat(2, 1fr);

      gap: 18px;
    }

    .contact-form input,
    .contact-form select,
    .contact-form textarea {

      width: 100%;

      border: 1px solid #e5e7eb;

      border-radius: 12px;

      padding: 14px 16px;

      font-size: 14px;

      background: #fff;

      transition: .3s;
    }

    .contact-form textarea {

      min-height: 140px;

      resize: vertical;
    }

    .contact-form input:focus,
    .contact-form textarea:focus,
    .contact-form select:focus {

      border-color: var(--secondary);

      box-shadow: 0 0 0 4px rgba(198, 61, 143, .08);

      outline: none;
    }

    .contact-btn {

      background: var(--gradient);

      color: #fff;

      border: none;

      padding: 15px;

      border-radius: 12px;

      font-size: 15px;

      font-weight: 600;

      transition: .35s;

      cursor: pointer;
    }

    .contact-btn:hover {

      transform: translateY(-3px);

      box-shadow: 0 18px 35px rgba(11, 31, 109, .18);
    }

    /*=================================================
RESPONSIVE
=================================================*/

    @media(max-width:992px) {

      .contact-container {

        grid-template-columns: 1fr;

        gap: 45px;

      }

      .office-wrapper {

        grid-template-columns: 1fr;

      }

      .contact-title {

        font-size: 30px;

      }

      .contact-form-wrapper {

        padding: 30px;

      }

    }

    @media(max-width:768px) {

      .contact-grid {

        grid-template-columns: 1fr;

      }

      .contact-title {

        font-size: 26px;

      }

      .contact-description {

        font-size: 14px;

      }

      .contact-form-title {

        font-size: 20px;

      }

      .contact-form-wrapper {

        padding: 24px;

      }

    }

    /* ==========================
   TESTIMONIAL SECTION
========================== */

    .premium-testimonial {
      padding: 40px 0;
    }

    /* Equal Height Owl Items */

    .owl-stage {
      display: flex;
      align-items: stretch;
    }

    .owl-item {
      display: flex;
      height: auto;
    }

    /* ==========================
   CARD
========================== */

    .testimonial-card {
      position: relative;
      width: 100%;
      background: #fff;
      border-radius: 24px;
      padding: 35px;
      margin: 15px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      min-height: 280px;
      transition:
        transform .45s ease,
        box-shadow .45s ease;
      justify-content: space-between;

    }

    .testimonial-card::after {
      content: "";
      position: absolute;

      width: 350px;
      height: 350px;

      top: 50%;
      left: 50%;

      transform: translate(-50%, -50%) scale(0);

      border-radius: 50%;

      background: radial-gradient(circle,
          rgba(109, 76, 255, 0.14) 0%,
          rgba(198, 61, 143, 0.08) 35%,
          transparent 70%);

      transition:
        transform .7s ease,
        opacity .7s ease;

      opacity: 0;

      pointer-events: none;
      z-index: 0;
    }

    .testimonial-card:hover::after {
      transform: translate(-50%, -50%) scale(1.4);
      opacity: 1;
    }

    .review {
      text-align: center;
    }

    /* Gradient Border */
    .author {
      display: flex;
      flex-direction: column;
      justify-content: end;
      margin-left: auto;
    }

    .testimonial-card::before {
      content: "";
      position: absolute;
      inset: 0;

      padding: 1px;
      border-radius: 24px;

      background: linear-gradient(135deg,
          #0B1F6D,
          #C63D8F,
          #6D4CFF);

      -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);

      -webkit-mask-composite: xor;
      mask-composite: exclude;

      pointer-events: none;
    }

    /* Hover */

    .testimonial-card:hover {
      transform: translateY(-10px);

      box-shadow:
        0 20px 60px rgba(11, 31, 109, 0.15);
    }

    /* ==========================
   QUOTE ICON
========================== */

    .quote-icon {
      width: 60px;
      height: 60px;

      background: linear-gradient(135deg,
          #0B1F6D,
          #6D4CFF);

      border-radius: 18px;

      display: flex;
      align-items: center;
      justify-content: center;

      margin-bottom: 25px;

      flex-shrink: 0;
    }

    .quote-icon i {
      color: #fff;
      font-size: 24px;
    }

    /* ==========================
   CONTENT
========================== */

    .testimonial-text {
      flex: 1;

      color: #555;
      font-size: 16px;
      line-height: 1.8;

      margin-bottom: 30px;
    }

    /* ==========================
   CLIENT INFO
========================== */

    .client-info {
      display: flex;
      align-items: center;
      gap: 15px;

      margin-top: auto;
    }

    .client-info img {
      width: 65px;
      height: 65px;

      border-radius: 50%;
      object-fit: cover;

      border: 3px solid #f3f3f3;

      flex-shrink: 0;
    }

    .client-info h4 {
      margin: 0 0 4px;

      font-size: 18px;
      font-weight: 700;

      color: #111;
    }

    .client-info span {
      color: #777;
      font-size: 14px;
    }

    /* ==========================
   DOTS
========================== */

    .owl-theme .owl-dots {
      margin-top: 30px;
    }

    .owl-theme .owl-dots .owl-dot span {
      width: 12px;
      height: 12px;

      background: #d7d7d7;

      transition: all .3s ease;
    }

    .owl-theme .owl-dots .owl-dot.active span {
      width: 35px;

      border-radius: 30px;

      background: linear-gradient(135deg,
          #0B1F6D,
          #C63D8F) !important;
    }

    /* ==========================
   RESPONSIVE
========================== */

    @media (max-width: 991px) {

      .testimonial-card {
        min-height: 340px;
        padding: 30px;
      }

      .testimonial-text {
        font-size: 15px;
      }

      .client-info h4 {
        font-size: 16px;
      }
    }

    @media (max-width: 767px) {

      .testimonial-card {
        min-height: auto;
        padding: 25px;
        margin: 10px;
      }

      .quote-icon {
        width: 50px;
        height: 50px;
      }

      .quote-icon i {
        font-size: 20px;
      }

      .testimonial-text {
        font-size: 14px;
        line-height: 1.7;
      }

      .client-info img {
        width: 55px;
        height: 55px;
      }
    }

    .testimonial-title {
      font-weight: 800;
      letter-spacing: -1px;

      background: linear-gradient(90deg,
          #0B1F6D,
          #4F46E5,
          #7C3AED,
          #C63D8F);

      background-size: 200% auto;

      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;

      animation: gradientShift 6s linear infinite;
    }

    @keyframes gradientShift {
      0% {
        background-position: 0% center;
      }

      100% {
        background-position: 200% center;
      }
    }

    .program-section {
      position: relative;
      overflow: hidden;
      background:
        radial-gradient(circle at top left,
          rgba(109, 76, 255, .08),
          transparent 35%),

        radial-gradient(circle at bottom right,
          rgba(198, 61, 143, .08),
          transparent 35%),

        linear-gradient(180deg,
          #ffffff 0%,
          #f8f9ff 100%);
    }

    /* Floating Orbs */

    .gradient-orb {
      position: absolute;
      border-radius: 50%;
      filter: blur(80px);
      pointer-events: none;
    }

    .orb-1 {
      width: 350px;
      height: 350px;

      background: rgba(109, 76, 255, .15);

      top: -100px;
      left: -120px;

      animation: floatOne 12s ease-in-out infinite;
    }

    .orb-2 {
      width: 300px;
      height: 300px;

      background: rgba(198, 61, 143, .12);

      bottom: -80px;
      right: -80px;

      animation: floatTwo 15s ease-in-out infinite;
    }

    /* Animations */

    @keyframes floatOne {

      0%,
      100% {
        transform: translate(0, 0);
      }

      50% {
        transform: translate(40px, 30px);
      }
    }

    @keyframes floatTwo {

      0%,
      100% {
        transform: translate(0, 0);
      }

      50% {
        transform: translate(-40px, -25px);
      }
    }

    .legal-page {
      background: #fafbff;
    }

    /* =========================
   HERO
========================= */
    .legal-hero {
      position: relative;
      overflow: hidden;

      padding: 50px 0 50px;

      background:
        radial-gradient(circle at 15% 20%,
          rgba(109, 76, 255, .18),
          transparent 35%),

        radial-gradient(circle at 85% 20%,
          rgba(198, 61, 143, .12),
          transparent 35%),

        linear-gradient(135deg,
          #f6f8ff 0%,
          #ffffff 50%,
          #fff7fb 100%);
    }

    .legal-hero::before {
      content: '';

      position: absolute;

      width: 520px;
      height: 520px;

      right: -120px;
      top: 50%;

      transform: translateY(-50%);

      border-radius: 50%;

      background:
        linear-gradient(135deg,
          rgba(109, 76, 255, .18),
          rgba(198, 61, 143, .12));

      filter: blur(10px);

      animation: floatOrb 8s ease-in-out infinite;
    }

    .legal-hero::after {
      content: '';

      position: absolute;

      width: 260px;
      height: 260px;

      right: 180px;
      top: 120px;

      border-radius: 50%;

      background:
        rgba(255, 255, 255, .35);

      backdrop-filter: blur(20px);

      border:
        1px solid rgba(255, 255, 255, .7);

      animation: floatCircle 10s ease-in-out infinite;
    }

    .hero-shapes {
      position: absolute;
      inset: 0;
      pointer-events: none;
    }

    .shape {
      position: absolute;
      border-radius: 24px;
    }

    .shape-1 {
      width: 90px;
      height: 90px;

      right: 350px;
      top: 120px;

      background:
        linear-gradient(135deg,
          rgba(109, 76, 255, .15),
          rgba(109, 76, 255, .05));

      transform: rotate(25deg);

      animation: float1 8s ease infinite;
    }

    .shape-2 {
      width: 60px;
      height: 60px;

      right: 280px;
      bottom: 120px;

      border-radius: 50%;

      background:
        linear-gradient(135deg,
          rgba(198, 61, 143, .18),
          rgba(198, 61, 143, .05));

      animation: float2 6s ease infinite;
    }

    .shape-3 {
      width: 130px;
      height: 130px;

      right: 80px;
      top: 180px;

      border:
        2px dashed rgba(109, 76, 255, .18);

      border-radius: 50%;

      animation: rotateShape 18s linear infinite;
    }

    .legal-badge {
      display: inline-flex;
      align-items: center;
      gap: 10px;

      padding: 12px 22px;

      border-radius: 100px;

      background:
        rgba(109, 76, 255, .08);

      border:
        1px solid rgba(109, 76, 255, .15);

      color: var(--accent);

      font-weight: 600;
    }

    .legal-title {
      margin: 25px 0 15px;

      font-size: clamp(3rem, 6vw, 5rem);
      line-height: 1.1;
      font-weight: 900;

      background:
        linear-gradient(135deg,
          var(--primary),
          var(--accent),
          var(--secondary));

      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .legal-meta {
      margin-bottom: 20px;
      color: #555;
      font-weight: 600;
    }

    .legal-intro {
      max-width: 900px;

      font-size: 18px;
      line-height: 1.9;

      color: var(--text);
    }

    /* =========================
   LAYOUT
========================= */

    .legal-container {
      display: grid;
      grid-template-columns: 320px 1fr;
      gap: 40px;

      max-width: 1400px;
      margin: auto;

      padding: 80px 20px;
    }

    /* =========================
   SIDEBAR
========================= */

    .legal-sidebar {
      position: sticky;
      top: 120px;

      height: fit-content;
    }

    .sidebar-card {
      background:
        rgba(255, 255, 255, .8);

      backdrop-filter: blur(20px);

      border:
        1px solid rgba(255, 255, 255, .7);

      border-radius: 28px;

      padding: 30px;

      box-shadow:
        0 20px 50px rgba(0, 0, 0, .05);
    }

    .sidebar-card h3 {
      margin-bottom: 20px;

      font-size: 22px;
      font-weight: 800;

      color: var(--dark);
    }

    .sidebar-card a {
      display: block;

      padding: 14px 16px;

      margin-bottom: 8px;

      border-radius: 14px;

      text-decoration: none;

      color: #555;

      transition: .3s ease;
    }

    .sidebar-card a:hover {
      background: #f5f7ff;
      color: var(--accent);

      transform: translateX(5px);
    }

    /* =========================
   CONTENT
========================= */

    .legal-content {
      display: flex;
      flex-direction: column;
      gap: 30px;
    }

    /* =========================
   CARD
========================= */

    .legal-card {
      position: relative;

      background:
        rgba(255, 255, 255, .85);

      backdrop-filter: blur(20px);

      border:
        1px solid rgba(255, 255, 255, .8);

      border-radius: 32px;

      padding: 45px;

      overflow: hidden;

      transition: .4s ease;

      box-shadow:
        0 15px 40px rgba(0, 0, 0, .05);
    }

    .legal-card:hover {
      transform: translateY(-8px);

      box-shadow:
        0 25px 60px rgba(11, 31, 109, .08);
    }

    .legal-card::before {
      content: '';

      position: absolute;
      top: 0;
      left: 0;

      width: 5px;
      height: 100%;

      background:
        linear-gradient(180deg,
          var(--primary),
          var(--secondary));
    }

    /* =========================
   CARD HEADER
========================= */

    .card-header {
      display: flex;
      align-items: center;
      gap: 20px;

      margin-bottom: 20px;
    }

    .section-number {
      min-width: 70px;
      width: 70px;
      height: 70px;

      border-radius: 20px;

      display: flex;
      align-items: center;
      justify-content: center;

      color: #fff;

      font-size: 22px;
      font-weight: 800;

      background:
        linear-gradient(135deg,
          var(--primary),
          var(--accent));
    }

    .card-header h2 {
      margin: 0;

      font-size: 30px;
      font-weight: 800;

      color: var(--dark);
    }

    /* =========================
   CONTENT
========================= */

    .section-content {
      color: var(--text);

      line-height: 1.9;

      margin-bottom: 25px;
    }

    /* =========================
   POINTS
========================= */

    .legal-points {
      margin: 0;
      padding: 0;

      list-style: none;
    }

    .legal-points li {
      position: relative;

      padding-left: 42px;

      margin-bottom: 15px;

      color: #444;

      line-height: 1.8;
    }

    .legal-points li::before {
      content: "✓";

      position: absolute;
      left: 0;
      top: 2px;

      width: 26px;
      height: 26px;

      border-radius: 50%;

      display: flex;
      align-items: center;
      justify-content: center;

      color: #fff;

      font-size: 12px;
      font-weight: 700;

      background:
        linear-gradient(135deg,
          var(--accent),
          var(--secondary));
    }

    /* =========================
   MOBILE
========================= */

    @media(max-width:991px) {

      .legal-container {
        grid-template-columns: 1fr;
      }

      .legal-sidebar {
        position: relative;
        top: auto;
      }

      .card-header {
        flex-direction: column;
        align-items: flex-start;
      }

      .legal-card {
        padding: 30px;
      }

      .card-header h2 {
        font-size: 24px;
      }

      .legal-title {
        font-size: 42px;
      }
    }

    .blog-details-page {
      padding: 80px 0;
    }

    .blog-hero {
      text-align: center;
      margin-bottom: 40px;
    }

    .blog-category {
      display: inline-block;
      background: #7b3ff2;
      color: #fff;
      padding: 8px 18px;
      border-radius: 30px;
      font-size: 14px;
    }

    .blog-title {
      font-size: 48px;
      line-height: 1.2;
      margin: 20px 0;
    }

    .blog-meta {
      display: flex;
      justify-content: center;
      gap: 25px;
      color: #777;
    }

    .blog-banner img {
      width: 100%;
      border-radius: 20px;
    }

    .blog-content-wrapper-detail {
      /* max-width:900px; */
      margin: 60px auto;
    }

    .blog-content-wrapper-detail h2 {
      font-size: 34px;
      margin: 40px 0 20px;
    }

    .blog-content-wrapper-detail p {
      font-size: 18px;
      line-height: 1.9;
      color: #555;
    }

    .blog-content-wrapper-detail ul {
      margin: 25px 0;
      padding-left: 25px;
    }

    .blog-content-wrapper-detail li {
      margin-bottom: 12px;
      line-height: 1.8;
    }

    .blog-content-wrapper-detail blockquote {
      border-left: 5px solid #7b3ff2;
      background: #f8f5ff;
      padding: 25px;
      margin: 40px 0;
      font-size: 22px;
      font-style: italic;
    }

    .blog-callout {
      display: flex;
      align-items: flex-start;
      gap: 20px;

      margin: 50px 0;
      padding: 30px;

      background: #ffffff;

      border: 1px solid rgba(123, 63, 242, 0.15);
      border-left: 6px solid #7b3ff2;

      border-radius: 20px;

      box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.06);

      position: relative;
      overflow: hidden;
    }

    .blog-callout::before {
      content: "";

      position: absolute;

      top: -80px;
      right: -80px;

      width: 180px;
      height: 180px;

      border-radius: 50%;

      background:
        radial-gradient(rgba(123, 63, 242, 0.15),
          transparent);
    }

    .blog-callout-icon {
      flex-shrink: 0;

      width: 60px;
      height: 60px;

      border-radius: 16px;

      display: flex;
      align-items: center;
      justify-content: center;

      background:
        linear-gradient(135deg,
          #7b3ff2,
          #b147ff);

      color: #fff;

      font-size: 24px;
    }

    .blog-callout-content {
      flex: 1;
    }

    .callout-label {
      display: inline-block;

      margin-bottom: 12px;

      font-size: 13px;
      font-weight: 700;

      letter-spacing: 1px;
      text-transform: uppercase;

      color: #7b3ff2;
    }

    .blog-callout-content p {
      margin: 0;

      font-size: 17px;
      line-height: 1.8;

      color: #555;
    }

    .blog-banner {
      position: relative;

      padding: 140px 0 100px;

      background: var(--gradient-light);

      overflow: hidden;
    }

    .blog-banner::before {
      content: "";

      position: absolute;

      top: -200px;
      right: -200px;

      width: 500px;
      height: 500px;

      border-radius: 50%;

      background:
        radial-gradient(rgba(255, 255, 255, .12),
          transparent);
    }

    .blog-banner-content {
      max-width: 800px;
      text-align: center;
      margin: auto;
      position: relative;
      z-index: 2;
    }


    .blog-banner h1 {
      color: #fff;

      font-size: 60px;

      line-height: 1.2;

      margin-bottom: 20px;
    }

    .blog-banner p {
      color: var(--primary);

      font-size: 18px;

      line-height: 1.8;

      max-width: 700px;

      margin: auto;
    }

    /* BLOG SECTION */
    .blog-section {
      padding: 100px 0;
      background: var(--light-bg);
      position: relative;
      overflow: hidden;
    }

    .blog-section::before {
      content: "";
      position: absolute;
      top: -250px;
      right: -250px;
      width: 500px;
      height: 500px;
      background: radial-gradient(circle,
          rgba(198, 61, 143, .08),
          transparent 70%);
    }

    .blog-header {
      text-align: center;
      max-width: 700px;
      margin: 0 auto 70px;
    }

    .blog-subtitle {
      display: inline-block;
      padding: 8px 18px;
      border-radius: 30px;
      background: rgba(198, 61, 143, .08);
      color: var(--secondary);
      font-weight: 600;
      margin-bottom: 20px;
    }

    .blog-title {
      font-size: 48px;
      font-weight: 800;
      line-height: 1.2;
      color: var(--dark);
      margin-bottom: 20px;
    }

    .blog-title span {
      background: var(--gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .blog-desc {
      color: var(--text);
      font-size: 18px;
      line-height: 1.8;
    }

    /* GRID */
    .blog-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
    }

    /* CARD */
    .blog-card {
      position: relative;
      overflow: hidden;
      border-radius: 28px;
      background: #fff;
      border: 1px solid rgba(139, 92, 246, .08);
      box-shadow:
        0 10px 30px rgba(15, 23, 42, .06);
      transition: all .4s ease;
      isolation: isolate;
    }

    /* Animated Background Glow */

    .blog-card::before {
      content: "";
      position: absolute;

      width: 250%;
      height: 250%;

      top: -75%;
      left: -75%;

      background:
        radial-gradient(circle at 20% 20%,
          rgba(198, 61, 143, .15),
          transparent 20%),

        radial-gradient(circle at 80% 30%,
          rgba(139, 92, 246, .15),
          transparent 20%),

        radial-gradient(circle at 50% 80%,
          rgba(59, 130, 246, .12),
          transparent 20%);

      opacity: 0;
      transition: .5s ease;
      z-index: 0;

      animation: cardGlow 12s linear infinite;
    }

    /* Shine Effect */

    .blog-card::after {
      content: "";
      position: absolute;

      top: 0;
      left: -120%;

      width: 70%;
      height: 100%;

      background: linear-gradient(90deg,
          transparent,
          rgba(255, 255, 255, .5),
          transparent);

      transform: skewX(-25deg);
      transition: .8s;
      z-index: 1;
    }

    .blog-card:hover::after {
      left: 150%;
    }

    .blog-card>* {
      position: relative;
      z-index: 2;
    }

    .blog-card:hover {
      transform: translateY(-10px);

      border-color: rgba(139, 92, 246, .25);

      box-shadow:
        0 25px 60px rgba(15, 23, 42, .12),
        0 10px 30px rgba(139, 92, 246, .08);
    }

    .blog-card:hover::before {
      opacity: 1;
    }

    @keyframes cardGlow {

      0% {
        transform: rotate(0deg);
      }

      100% {
        transform: rotate(360deg);
      }
    }

    /* Image */

    .blog-card-image {
      height: 260px;
      overflow: hidden;
      position: relative;
    }

    .blog-card-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: .8s ease;
    }

    .blog-card:hover .blog-card-image img {
      transform: scale(1.08);
    }

    /* Category */

    .blog-category {
      position: absolute;
      top: 20px;
      left: 20px;

      padding: 8px 18px;
      border-radius: 50px;

      background: linear-gradient(135deg,
          #C63D8F,
          #8B5CF6);

      color: #fff;
      font-size: 13px;
      font-weight: 600;

      z-index: 5;
    }

    /* Content */

    .blog-content {
      padding: 25px 30px 30px;
    }

    .blog-meta {
      display: flex;
      gap: 20px;
      flex-wrap: wrap;

      margin-bottom: 15px;

      color: #64748B;
      font-size: 14px;
    }

    .blog-meta i {
      color: #8B5CF6;
    }

    .blog-content h3 {
      font-size: 24px;
      color: #0F172A;
      line-height: 1.4;
      margin-bottom: 15px;
      transition: .3s;
    }

    .blog-card:hover .blog-content h3 {
      color: #8B5CF6;
    }

    .blog-content p {
      color: #64748B;
      line-height: 1.8;
      margin-bottom: 25px;
    }

    /* Button */

    .blog-btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;

      text-decoration: none;

      color: #0B1F6D;
      font-weight: 700;

      transition: .3s ease;
    }

    .blog-btn:hover {
      color: #8B5CF6;
    }

    .blog-btn i {
      transition: .3s ease;
    }

    .blog-btn:hover i {
      transform: translateX(6px);
    }

    .blog-details-page {
      padding: 80px 0;
    }

    .blog-hero {
      text-align: center;
      margin-bottom: 40px;
    }

    .blog-category {
      display: inline-block;
      background: #7b3ff2;
      color: #fff;
      padding: 8px 18px;
      border-radius: 30px;
      font-size: 14px;
    }

    .blog-title {
      font-size: 48px;
      line-height: 1.2;
      margin: 20px 0;
    }

    .blog-meta {
      display: flex;
      justify-content: center;
      gap: 25px;
      color: #777;
    }

    .blog-banner img {
      width: 100%;
      border-radius: 20px;
    }

    .blog-content-wrapper {
      max-width: 900px;
      margin: 60px auto;
    }

    .blog-content-wrapper h2 {
      font-size: 34px;
      margin: 40px 0 20px;
    }

    .blog-content-wrapper p {
      font-size: 18px;
      line-height: 1.9;
      color: #555;
    }

    .blog-content-wrapper ul {
      margin: 25px 0;
      padding-left: 25px;
    }

    .blog-content-wrapper li {
      margin-bottom: 12px;
      line-height: 1.8;
    }

    .blog-content-wrapper blockquote {
      border-left: 5px solid #7b3ff2;
      background: #f8f5ff;
      padding: 25px;
      margin: 40px 0;
      font-size: 22px;
      font-style: italic;
    }

    .blog-callout {
      background: linear-gradient(135deg,
          #7b3ff2,
          #b147ff);
      color: #fff;
      padding: 25px;
      border-radius: 15px;
      margin: 40px 0;
    }

    .tags-wrapper {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
    }

    .tag {
      background: #f1f1f1;
      padding: 10px 18px;
      border-radius: 30px;
    }

    .pg-achievements {
      position: relative;
      z-index: 10;
    }

    .pg-meta-pills {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
    }

    .pg-meta-pill {
      position: relative;
      padding: 28px;
      border-radius: 24px;
      background: #fff;
      overflow: hidden;
      box-shadow:
        0 10px 30px rgba(11, 31, 109, .08),
        0 1px 3px rgba(0, 0, 0, .05);
      transition: .35s ease;
      border: 1px solid rgba(139, 92, 246, .08);
    }

    .pg-meta-pill::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 4px;
      background: linear-gradient(90deg,
          #C63D8F,
          #8B5CF6);
    }

    .pg-meta-pill:hover {
      transform: translateY(-8px);
      box-shadow:
        0 20px 50px rgba(11, 31, 109, .12);
    }

    .pg-meta-pill h4 {
      font-size: 1.1rem;
      font-weight: 700;
      color: #0B1F6D;
      margin-bottom: 10px;
      line-height: 1.4;
    }

    .pg-meta-pill p {
      margin: 0;
      color: #64748B;
      font-size: .95rem;
      line-height: 1.7;
    }

    /* Tablet */
    @media (max-width:991px) {
      .pg-meta-pills {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    /* Mobile */
    @media (max-width:576px) {
      .pg-achievements {
        margin-top: 40px;
      }

      .pg-meta-pills {
        grid-template-columns: 1fr;
      }

      .pg-meta-pill {
        padding: 22px;
      }
    }

    /* blog background animation */
    .particles-bg {
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: 2;
      overflow: hidden;
    }

    .particles-bg span {
      position: absolute;
      bottom: -100px;
      border-radius: 50%;

      background: linear-gradient(135deg,
          rgba(198, 61, 143, .18),
          rgba(139, 92, 246, .18));

      box-shadow:
        0 0 10px rgba(198, 61, 143, .15),
        0 0 20px rgba(139, 92, 246, .15);

      animation: particleMove linear infinite;
    }

    /* Faster particles */

    .particles-bg span:nth-child(1) {
      left: 5%;
      width: 8px;
      height: 8px;
      animation-duration: 8s;
    }

    .particles-bg span:nth-child(2) {
      left: 10%;
      width: 12px;
      height: 12px;
      animation-duration: 10s;
    }

    .particles-bg span:nth-child(3) {
      left: 15%;
      width: 6px;
      height: 6px;
      animation-duration: 7s;
    }

    .particles-bg span:nth-child(4) {
      left: 20%;
      width: 10px;
      height: 10px;
      animation-duration: 9s;
    }

    .particles-bg span:nth-child(5) {
      left: 25%;
      width: 14px;
      height: 14px;
      animation-duration: 11s;
    }

    .particles-bg span:nth-child(6) {
      left: 30%;
      width: 7px;
      height: 7px;
      animation-duration: 8s;
    }

    .particles-bg span:nth-child(7) {
      left: 35%;
      width: 9px;
      height: 9px;
      animation-duration: 10s;
    }

    .particles-bg span:nth-child(8) {
      left: 40%;
      width: 13px;
      height: 13px;
      animation-duration: 9s;
    }

    .particles-bg span:nth-child(9) {
      left: 45%;
      width: 6px;
      height: 6px;
      animation-duration: 7s;
    }

    .particles-bg span:nth-child(10) {
      left: 50%;
      width: 12px;
      height: 12px;
      animation-duration: 10s;
    }

    .particles-bg span:nth-child(11) {
      left: 55%;
      width: 8px;
      height: 8px;
      animation-duration: 8s;
    }

    .particles-bg span:nth-child(12) {
      left: 60%;
      width: 15px;
      height: 15px;
      animation-duration: 12s;
    }

    .particles-bg span:nth-child(13) {
      left: 65%;
      width: 7px;
      height: 7px;
      animation-duration: 9s;
    }

    .particles-bg span:nth-child(14) {
      left: 70%;
      width: 10px;
      height: 10px;
      animation-duration: 8s;
    }

    .particles-bg span:nth-child(15) {
      left: 75%;
      width: 12px;
      height: 12px;
      animation-duration: 10s;
    }

    .particles-bg span:nth-child(16) {
      left: 80%;
      width: 6px;
      height: 6px;
      animation-duration: 7s;
    }

    .particles-bg span:nth-child(17) {
      left: 85%;
      width: 14px;
      height: 14px;
      animation-duration: 11s;
    }

    .particles-bg span:nth-child(18) {
      left: 90%;
      width: 8px;
      height: 8px;
      animation-duration: 8s;
    }

    .particles-bg span:nth-child(19) {
      left: 95%;
      width: 11px;
      height: 11px;
      animation-duration: 9s;
    }

    .particles-bg span:nth-child(20) {
      left: 50%;
      width: 18px;
      height: 18px;
      animation-duration: 13s;
    }

    @keyframes particleMove {

      0% {
        transform:
          translateY(0) translateX(0) scale(.8);

        opacity: 0;
      }

      10% {
        opacity: 1;
      }

      50% {
        transform:
          translateY(-50vh) translateX(40px) scale(1);
      }

      100% {
        transform:
          translateY(-120vh) translateX(-40px) scale(1.2);

        opacity: 0;
      }
    }

    .particles-bg span:nth-child(3n) {
      background: rgba(198, 61, 143, .18);
    }

    .particles-bg span:nth-child(2n) {
      background: rgba(139, 92, 246, .18);
    }

    .particles-bg span:nth-child(5n) {
      width: 20px !important;
      height: 20px !important;
      filter: blur(1px);
    }

    /* ===================================
   CONSULTATION MODAL
=================================== */

    .consultation-modal {
      position: relative;
      border: none;
      border-radius: 28px;
      background: rgba(255, 255, 255, .96);
      backdrop-filter: blur(16px);
      overflow: hidden;

      box-shadow:
        0 25px 60px rgba(11, 31, 109, .18);
    }

    /* Glow Border */

    .consultation-modal::before {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: 28px;
      padding: 1px;

      background: linear-gradient(135deg,
          rgba(198, 61, 143, .8),
          rgba(109, 76, 255, .8),
          rgba(11, 31, 109, .8));

      -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);

      -webkit-mask-composite: xor;
      mask-composite: exclude;

      pointer-events: none;
    }

    /* Ambient Glow */

    .consultation-modal::after {
      content: "";
      position: absolute;
      width: 250px;
      height: 250px;

      right: -80px;
      top: -80px;

      background:
        radial-gradient(rgba(198, 61, 143, .12),
          transparent 70%);

      pointer-events: none;
    }

    /* Header */

    .consultation-modal .modal-header {
      padding: 20px 22px 10px;
      border: none;
    }

    .consultation-tag {
      display: inline-flex;
      align-items: center;

      padding: 5px 12px;

      font-size: .72rem;
      font-weight: 600;

      border-radius: 999px;

      color: var(--secondary);

      background:
        rgba(198, 61, 143, .08);

      margin-bottom: 8px;
    }

    .consultation-modal .modal-title {
      margin: 0;
      font-family: var(--font-display);
      font-size: 1.75rem;
      color: var(--primary);
      font-weight: 700;
    }

    .consultation-subtitle {
      margin: 4px 0 0;
      font-size: .92rem;
      color: var(--text);
    }

    /* Body */

    .consultation-modal .modal-body {
      padding: 10px 22px 22px;
    }

    /* Mini Card */

    .consultation-mini-card {
      display: flex;
      align-items: center;
      gap: 12px;

      padding: 12px 14px;

      border-radius: 18px;

      background:
        linear-gradient(135deg,
          rgba(198, 61, 143, .05),
          rgba(109, 76, 255, .05));

      margin-bottom: 16px;
    }

    .consultation-mini-card i {
      width: 42px;
      height: 42px;

      display: flex;
      align-items: center;
      justify-content: center;

      border-radius: 12px;

      color: #fff;

      background: var(--gradient);
    }

    .consultation-mini-card strong {
      display: block;
      font-size: .9rem;
      color: var(--dark);
    }

    .consultation-mini-card span {
      font-size: .8rem;
      color: var(--text);
    }

    /* Form */

    .consultation-modal .form-label {
      font-size: .85rem;
      font-weight: 600;
      color: var(--dark);
      margin-bottom: 5px;
    }

    .consultation-modal .form-control,
    .consultation-modal .form-select {

      height: 50px;

      border-radius: 14px;

      border: 1px solid var(--border);

      /* background: var(--light-bg); */

      font-size: .9rem;

      transition: all .3s ease;
    }

    .consultation-modal textarea.form-control {
      height: 95px;
      resize: none;
      letter-spacing: 2px;
    }

    .consultation-modal .form-control:focus,
    .consultation-modal .form-select:focus {

      border-color: var(--accent);

      background: #fff;

      box-shadow:
        0 0 0 4px rgba(109, 76, 255, .08);
    }

    /* Submit */

    .consultation-modal .btn-primary {

      height: 52px;

      border: none;

      border-radius: 14px;

      font-weight: 600;

      background: var(--gradient);

      transition: .3s ease;
    }

    .consultation-modal .btn-primary:hover {

      transform: translateY(-2px);

      box-shadow:
        0 12px 25px rgba(11, 31, 109, .18);
    }

    /* Close */

    .consultation-modal .btn-close {
      opacity: 1;
      transform: scale(.9);
    }

    /* Backdrop */

    .modal-backdrop.show {
      opacity: .75;
      backdrop-filter: blur(6px);
    }

    /* Mobile */

    @media(max-width:768px) {

      .consultation-modal .modal-header {
        padding: 18px;
      }

      .consultation-modal .modal-body {
        padding: 10px 18px 18px;
      }

      .consultation-modal .modal-title {
        font-size: 1.45rem;
      }
    }

    .logo-slide-section {
      position: relative;
      padding: 50px 0;
      overflow: hidden;

      background:
        radial-gradient(circle at top left,
          rgba(198, 61, 143, .06),
          transparent 35%),

        radial-gradient(circle at bottom right,
          rgba(109, 76, 255, .06),
          transparent 35%),

        #fff;
    }

    /* Heading */

    .logo-slide-heading {
      text-align: center;
      margin-bottom: 60px;
    }

    .logo-slide-heading span {
      display: inline-block;
      padding: 8px 18px;
      border-radius: 30px;
      background: rgba(198, 61, 143, .08);
      color: #C63D8F;
      font-weight: 600;
      margin-bottom: 15px;
    }

    .logo-slide-heading h2 {
      font-size: 48px;
      font-weight: 800;
      color: #0B1F6D;
      margin-bottom: 10px;
    }

    .logo-slide-heading p {
      color: #64748b;
      max-width: 600px;
      margin: auto;
    }

    /* Grid */

    .logo-slide-grid {
      display: grid;

      grid-template-columns:
        repeat(auto-fit, minmax(180px, 1fr));

      gap: 24px;

      align-items: center;
    }

    /* Center Card */

    .logo-slide-center-card {
      grid-column: span 2;
      min-height: 160px;
      border-radius: 28px;
      background:
        radial-gradient(circle at top left,
          rgba(198, 61, 143, .45),
          transparent 45%),

        radial-gradient(circle at bottom right,
          rgba(109, 76, 255, .45),
          transparent 45%),

        linear-gradient(135deg,
          #0B1F6D,
          #1A2E8A);

      color: #fff;

      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;

      box-shadow:
        0 20px 50px rgba(11, 31, 109, .15);

      border: 1px solid rgba(255, 255, 255, .08);
    }

    .logo-slide-center-card h3 {
      font-size: 48px;
      margin: 0;
      line-height: 1;
    }

    .logo-slide-center-card span {
      font-size: 18px;
      font-weight: 600;
    }

    /* Logo Cards */

    .logo-slide-card {
      height: 120px;

      background: #fff;

      border-radius: 22px;

      display: flex;
      align-items: center;
      justify-content: center;

      border: 1px solid #edf2f7;

      transition: .4s ease;

      box-shadow:
        0 10px 25px rgba(15, 23, 42, .05);
    }

    /* .logo-slide-card:nth-child(even) {
      transform: translateY(20px);
    }

    .logo-slide-card:nth-child(odd) {
      transform: translateY(-10px);
    } */

    .logo-slide-card:hover {

      border-color: #C63D8F;

      box-shadow:
        0 20px 40px rgba(198, 61, 143, .15);
    }

    .logo-slide-card img {
      max-width: 120px;
      /* max-height:60px; */

      object-fit: contain;

      opacity: .85;

      /* transition:.3s; */
    }

    .logo-slide-card:hover img {
      opacity: 1;
      transform: scale(1.08);
    }

    .country-dropdown {
      position: relative;
      font-family: Arial, sans-serif;
    }

    .selected-country {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 10px 15px;
      border-radius: 8px;
      cursor: pointer;
    }

    .selected-country img {
      width: 24px;
      height: 18px;
      object-fit: cover;
    }

    .country-list {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: #fff;
      border: 1px solid #ddd;
      border-radius: 8px;
      margin-top: 5px;
      list-style: none;
      padding: 0;
      display: none;
      z-index: 100;
    }

    .country-list li {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 10px 15px;
      cursor: pointer;
    }

    .country-list li:hover {
      background: #f5f5f5;
    }

    .country-list img {
      width: 24px;
      height: 18px;
    }

    /* ===============================
        ED FUSION AI CHATBOT
=================================*/

    .chat-toggle {

      position: fixed;
      right: 30px;
      bottom: 30px;

      width: 72px;
      height: 72px;

      border-radius: 50%;

      background: linear-gradient(135deg, #0B1F6D, #C63D8F);

      display: flex;
      justify-content: center;
      align-items: center;

      cursor: pointer;

      color: #fff;

      font-size: 30px;

      z-index: 99999;

      box-shadow:
        0 15px 40px rgba(11, 31, 109, .25);

      transition: .35s;

      overflow: hidden;

    }

    .chat-toggle:hover {

      transform: translateY(-8px) scale(1.05);

      box-shadow:
        0 25px 55px rgba(11, 31, 109, .35);

    }

    .chat-pulse {

      position: absolute;

      width: 100%;
      height: 100%;

      border-radius: 50%;

      border: 2px solid rgba(198, 61, 143, .45);

      animation: pulse 2s infinite;

    }

    @keyframes pulse {

      0% {

        transform: scale(.8);
        opacity: 1;

      }

      100% {

        transform: scale(1.6);
        opacity: 0;

      }

    }

    /*=============================*/

    .chat-widget {

      position: fixed;

      right: 30px;
      bottom: 30px;

      width: 390px;
      height: 500px;

      display: none;
      flex-direction: column;

      background: rgba(255, 255, 255, .95);

      backdrop-filter: blur(25px);

      border-radius: 26px;

      overflow: hidden;

      border: 1px solid rgba(255, 255, 255, .45);

      box-shadow:
        0 35px 90px rgba(8, 18, 54, .25);

      z-index: 99999;

      animation: popup .35s ease;

    }

    @keyframes popup {

      from {

        opacity: 0;
        transform: translateY(40px) scale(.92);

      }

      to {

        opacity: 1;
        transform: none;

      }

    }

    /*=============================*/

    .chat-header {

      padding: 16px 18px;

      background:
        linear-gradient(135deg, #081236, #0B1F6D, #C63D8F);

      display: flex;
      justify-content: space-between;
      align-items: center;

      color: #fff;

    }

    .chat-header-left {

      display: flex;
      align-items: center;
      gap: 14px;

    }

    .chat-avatar {

      width: 46px;
      height: 46px;

      border-radius: 50%;

      background: #fff;

      display: flex;
      justify-content: center;
      align-items: center;

      overflow: hidden;

      box-shadow: 0 8px 20px rgba(0, 0, 0, .15);

    }

    .chat-avatar img {

      width: 100%;
      height: 100%;
      object-fit: contain;

      padding: 8px;

    }

    .chat-header h4 {

      margin: 0;
      font-size: 18px;

      font-weight: 700;

    }

    .chat-status {

      margin-top: 5px;

      font-size: 13px;

      display: flex;
      align-items: center;
      gap: 7px;

      opacity: .9;

    }

    .chat-status span {

      width: 10px;
      height: 10px;

      border-radius: 50%;

      background: #22c55e;

      animation: online 1.2s infinite;

    }

    @keyframes online {

      50% {

        transform: scale(1.5);

      }

    }

    #closeChat {

      background: none;
      border: none;

      font-size: 24px;

      cursor: pointer;

      color: #fff;

      transition: .3s;

    }

    #closeChat:hover {

      transform: rotate(90deg);

    }

    /*=============================*/

    .chat-box {

      flex: 1;

      padding: 20px;

      overflow-y: auto;

      background:
        linear-gradient(#fcfcff, #f5f7fc);

      scroll-behavior: smooth;

    }

    /*=============================*/

    .welcome-card {

      background: #fff;

      padding: 18px;

      margin-bottom: 15px;

      border-radius: 22px;

      text-align: center;
      box-shadow:
        0 12px 35px rgba(0, 0, 0, .06);

      border: 1px solid #edf2fa;

    }

    .welcome-icon {

      font-size: 40px;

      margin-bottom: 8px;

    }

    .welcome-card h3 {

      margin-bottom: 5px;

      font-weight: 700;
      font-size: 28px;

      color: #081236;

    }

    .welcome-card p {

      font-size: 14px;

      line-height: 1.7;

      color: #555;

    }

    /*=============================*/

    .quick-actions {

      display: flex;

      flex-wrap: wrap;

      gap: 10px;

      margin-bottom: 20px;

    }

    .quick-btn {

      padding: 10px 18px;

      border-radius: 50px;

      border: none;

      background: #fff;

      cursor: pointer;

      font-weight: 600;

      font-size: 14px;

      transition: .3s;

      box-shadow:
        0 8px 18px rgba(0, 0, 0, .05);

    }

    .quick-btn:hover {

      background:
        linear-gradient(135deg, #0B1F6D, #C63D8F);

      color: #fff;

      transform: translateY(-3px);

    }

    /*=============================*/

    .user-wrapper {

      display: flex;

      justify-content: flex-end;

      margin-bottom: 18px;

    }

    .bot-wrapper {

      display: flex;

      justify-content: flex-start;

      margin-bottom: 18px;

    }

    .user-message {

      background:
        linear-gradient(135deg, #0B1F6D, #2346ff);

      color: #fff;

      padding: 14px 18px;

      border-radius: 22px 22px 4px 22px;

      max-width: 80%;

      font-size: 14px;

      line-height: 1.7;

      box-shadow:
        0 15px 25px rgba(11, 31, 109, .15);

    }

    .bot-message {

      background: #fff;

      padding: 14px 18px;

      border-radius: 22px 22px 22px 4px;

      max-width: 82%;

      font-size: 14px;

      line-height: 1.7;

      color: #444;

      border: 1px solid #edf2fa;

      box-shadow:
        0 12px 20px rgba(0, 0, 0, .05);

    }

    .msg-time {

      margin-top: 8px;

      font-size: 11px;

      opacity: .55;

    }

    /*=============================*/

    .typing {

      display: flex;

      gap: 6px;

      align-items: center;

    }

    .typing span {

      width: 8px;
      height: 8px;

      background: #888;

      border-radius: 50%;

      animation: typing .7s infinite alternate;

    }

    .typing span:nth-child(2) {

      animation-delay: .2s;

    }

    .typing span:nth-child(3) {

      animation-delay: .4s;

    }

    @keyframes typing {

      from {

        transform: translateY(0);

        opacity: .4;

      }

      to {

        transform: translateY(-6px);

        opacity: 1;

      }

    }

    /*=============================*/

    .chat-footer {

      padding: 16px;

      background: #fff;

      border-top: 1px solid #edf2fa;

    }

    .chat-input {

      display: flex;

      gap: 10px;

    }

    .chat-input input {

      flex: 1;

      height: 55px;

      border: none;

      outline: none;

      padding: 0 20px;

      border-radius: 50px;

      background: #f4f6fb;

      font-size: 15px;

    }

    .chat-input input:focus {

      background: #fff;

      box-shadow:
        0 0 0 3px rgba(11, 31, 109, .08);

    }

    .chat-input button {

      width: 55px;
      height: 55px;

      border: none;

      border-radius: 50%;

      cursor: pointer;

      background:
        linear-gradient(135deg, #0B1F6D, #C63D8F);

      color: #fff;

      font-size: 18px;

      transition: .3s;

    }

    .chat-input button:hover {

      transform: scale(1.08);

    }

    .chat-powered {

      margin-top: 10px;

      text-align: center;

      font-size: 12px;

      color: #777;

    }

    /*=============================*/

    .chat-box::-webkit-scrollbar {

      width: 7px;

    }

    .chat-box::-webkit-scrollbar-thumb {

      background:
        linear-gradient(#0B1F6D, #C63D8F);

      border-radius: 20px;

    }

    .chat-box::-webkit-scrollbar-track {

      background: transparent;

    }

    /*=============================*/

    @media(max-width:768px) {

      .chat-widget {

        width: 95%;
        height: 78vh;

        right: 2.5%;
        bottom: 95px;

      }

      .chat-toggle {

        right: 20px;
        bottom: 20px;

      }

    }

    .chat-toggle {
      transition: all .35s ease;
    }

    .chat-toggle.hide {
      opacity: 0;
      visibility: hidden;
      transform: scale(.7);
    }

    .chat-widget {

      display: flex;
      /* display:none hata do */

      opacity: 0;
      visibility: hidden;

      transform: translateY(40px) scale(.92);

      transition:
        opacity .35s ease,
        transform .35s ease,
        visibility .35s;

    }

    .chat-widget.show {

      opacity: 1;
      visibility: visible;

      transform: translateY(0) scale(1);

    }
.blog-main-heading{
    font-size:2rem;
    font-weight:800;
    margin:50px 0 20px;
    line-height:1.2;
}

.blog-sub-heading{
    font-size:1.5rem !important;     
    font-weight:700;
    margin:35px 0 15px;
    line-height:1.35;
}