/* Homepage inline CSS - extracted for performance */

/* === Style Block 1 === */
    :root {
      /* Light Clean Color Palette - QRCodeChimp Style */
      --primary-color: #2563eb;
      --primary-hover: #1d4ed8;
      --secondary-color: #0ea5e9;
      --accent-color: #06b6d4;
      --success-color: #10b981;
      --warning-color: #f59e0b;
      --danger-color: #ef4444;
      --info-color: #0ea5e9;
      /* Light Background Colors */
      --bg-primary: #ffffff;
      --bg-secondary: #f8fafc;
      --bg-tertiary: #f1f5f9;
      --bg-card: #ffffff;
      --bg-hover: #f8fafc;
      --bg-light: #ffffff;
      --bg-gray: #f1f5f9;
      --bg-blue-light: #eff6ff;
      /* Text Colors */
      --text-primary: #0f172a;
      --text-secondary: #475569;
      --text-muted: #64748b;
      --text-light: #94a3b8;
      --text-white: #ffffff;
      /* Border Colors */
      --border-color: #e2e8f0;
      --border-hover: #cbd5e1;
      --border-blue: #bfdbfe;
      /* Gradients */
      --gradient-hero: linear-gradient(135deg, #eff6ff 0%, #dbeafe 50%, #bfdbfe 100%);
      --gradient-card: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
      --gradient-primary: linear-gradient(135deg, #2563eb 0%, #0ea5e9 100%);
      --gradient-secondary: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
      --gradient-success: linear-gradient(135deg, #10b981 0%, #06b6d4 100%);
      --gradient-blue-soft: linear-gradient(180deg, #eff6ff 0%, #ffffff 100%);
      /* Shadows */
      --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
      --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
      --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
      --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
      --shadow-blue: 0 4px 14px 0 rgba(37, 99, 235, 0.15);
      --shadow-blue-lg: 0 10px 30px -5px rgba(37, 99, 235, 0.2);
    }
    body {
      font-family: "Inter", "Public Sans", sans-serif;
      background: var(--bg-primary);
      color: var(--text-primary);
      line-height: 1.6;
      overflow-x: hidden;
    }
    /* Header Container Styles */
    #header-container {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      background: transparent;
      box-shadow: none;
      opacity: 1;
      visibility: visible;
      min-height: 80px;
      transition: none;
    }
    /* Footer Container Styles */
    #footer-container {
      background: var(--bg-secondary);
      border-top: 1px solid var(--border-color);
    }
    /* Loading State Styles */
    .loading-spinner {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 4rem 2rem;
      color: var(--text-muted);
    }
    .loading-spinner .spinner-border {
      width: 3rem;
      height: 3rem;
      border-width: 0.3em;
      color: var(--primary-color);
    }
    /* Hero Section */
    .hero-section {
      background: var(--gradient-hero);
      color: var(--text-primary);
      padding: 5rem 0;
      margin-bottom: 0;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .hero-section::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%" r="50%"><stop offset="0%" stop-color="%232563eb" stop-opacity="0.08"/><stop offset="100%" stop-color="%232563eb" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="200" r="100" fill="url(%23a)"/><circle cx="800" cy="300" r="150" fill="url(%23a)"/><circle cx="400" cy="700" r="120" fill="url(%23a)"/></svg>');
      opacity: 0.5;
    }
    .hero-content {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 1.2fr 0.8fr;
      gap: 3rem;
      align-items: center;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 2rem;
    }
    .hero-left {
      animation: slideInLeft 0.8s ease-out;
      display: flex;
      flex-direction: column;
      gap: 2.5rem;
      justify-content: center;
      padding-right: 2rem;
    }
    .hero-subtitle {
      margin-bottom: 0;
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }
    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.75rem;
      padding: 0.75rem 1.5rem;
      background: rgba(37, 99, 235, 0.08);
      border: 1px solid rgba(37, 99, 235, 0.2);
      border-radius: 50px;
      backdrop-filter: blur(10px);
      margin-bottom: 1rem;
      font-size: 0.875rem;
      font-weight: 600;
      color: var(--primary-color);
      text-transform: uppercase;
      letter-spacing: 0.5px;
      animation: slideInLeft 0.8s ease-out 0.2s both;
      align-self: flex-start;
      transition: all 0.3s ease;
      cursor: default;
    }
    .hero-badge:hover {
      background: rgba(37, 99, 235, 0.12);
      border-color: rgba(37, 99, 235, 0.3);
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(37, 99, 235, 0.15);
    }
    .hero-badge i {
      font-size: 1rem;
      transition: transform 0.3s ease;
    }
    .hero-badge:hover i {
      transform: scale(1.1);
    }
    .hero-main-title {
      font-size: 1.5rem;
      font-weight: 700;
      line-height: 1.4;
      margin: 0.5rem 0;
      display: block;
      text-align: left;
      color: #2563eb;
    }
    .title-line-1 {
      color: #2563eb;
      font-weight: 700;
      display: inline;
      margin-right: 0.4rem;
    }
    .title-line-2 {
      color: #0ea5e9;
      font-weight: 700;
      display: inline;
    }
    .hero-description {
      margin: 0;
      text-align: left;
      padding: 1.5rem 2rem;
      background: rgba(255, 255, 255, 0.7);
      border-radius: 16px;
      border: 1px solid var(--border-color);
      backdrop-filter: blur(10px);
      animation: fadeInUp 0.8s ease-out 0.5s both;
      max-width: 100%;
      margin-top: 0.5rem;
      position: relative;
      overflow: hidden;
      box-shadow: var(--shadow-sm);
    }
    .hero-description::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 4px;
      height: 100%;
      background: var(--gradient-primary);
      border-radius: 0 2px 2px 0;
    }
    .university-info {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      margin-bottom: 1rem;
      font-size: 1.1rem;
      font-weight: 600;
      color: var(--text-primary);
    }
    .university-info i {
      color: var(--primary-color);
      font-size: 1.25rem;
    }
    .system-description {
      font-size: 1rem;
      color: var(--text-secondary);
      line-height: 1.6;
      margin: 0;
      font-weight: 400;
    }
    @keyframes gradientShift {
      0%,
      100% {
        background-position: 0% 50%;
      }
      50% {
        background-position: 100% 50%;
      }
    }
    @keyframes slideInLeft {
      from {
        opacity: 0;
        transform: translateX(-30px);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }
    .hero-actions {
      display: flex;
      gap: 1.5rem;
      flex-wrap: wrap;
    }
    .hero-stats-inline {
      display: flex;
      gap: 2rem;
      margin-top: 1rem;
    }
    .hero-right {
      display: flex;
      justify-content: center;
      align-items: center;
      animation: slideInRight 0.8s ease-out 0.2s both;
      padding-left: 1rem;
    }
    .hero-image-container {
      position: relative;
      width: 100%;
      max-width: 500px;
      margin: 0 auto;
      border-radius: 24px;
      overflow: hidden;
      box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
      transform: translateY(0);
      padding: 4px;
      background: linear-gradient(45deg,
          #3b82f6,
          #8b5cf6,
          #06b6d4,
          #ef4444,
          #f59e0b,
          #3b82f6);
      background-size: 300% 300%;
      animation: gradientBorder 3s ease infinite;
    }
    @keyframes gradientBorder {
      0% {
        background-position: 0% 50%;
      }
      50% {
        background-position: 100% 50%;
      }
      100% {
        background-position: 0% 50%;
      }
    }
    .hero-image {
      width: 100%;
      aspect-ratio: 16/9;
      object-fit: cover;
      border-radius: 20px;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
      display: block;
      height: auto;
    }
    .hero-image-container:hover {
      transform: translateY(-5px) scale(1.02);
      box-shadow: var(--shadow-xl), var(--shadow-glow);
      animation-duration: 1.5s;
    }
    .stat-item {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      padding: 1rem 1.25rem;
      background: rgba(255, 255, 255, 0.9);
      backdrop-filter: blur(10px);
      border-radius: 16px;
      box-shadow: var(--shadow-md);
      border: 1px solid var(--border-color);
      transition: all 0.3s ease;
      animation: fadeInUp 0.8s ease-out;
    }
    .stat-item:nth-child(2) {
      animation-delay: 0.2s;
    }
    .stat-item:nth-child(3) {
      animation-delay: 0.4s;
    }
    .stat-item:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow-blue-lg);
      background: rgba(255, 255, 255, 1);
      border-color: var(--primary-color);
    }
    .stat-icon {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 45px;
      height: 45px;
      background: var(--gradient-primary);
      border-radius: 12px;
      color: white;
      font-size: 1.25rem;
      box-shadow: var(--shadow-md);
      flex-shrink: 0;
    }
    .stat-info {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
    }
    .stat-number {
      font-size: 1.5rem;
      font-weight: 800;
      color: var(--text-light);
      line-height: 1;
      margin-bottom: 0.25rem;
    }
    .stat-label {
      font-size: 0.8rem;
      color: var(--text-light);
      font-weight: 500;
      opacity: 0.9;
    }
    .btn-secondary {
      background: rgba(255, 255, 255, 0.1);
      color: var(--text-light);
      border: 1px solid rgba(255, 255, 255, 0.3);
      backdrop-filter: blur(10px);
    }
    .btn-secondary:hover {
      background: rgba(255, 255, 255, 0.2);
      border-color: rgba(255, 255, 255, 0.5);
      transform: translateY(-2px);
      color: var(--text-light);
      text-decoration: none;
    }
    .form-input,
    .form-select {
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.2);
      color: var(--text-light);
      padding: 0.75rem 1rem;
      border-radius: 8px;
      transition: all 0.3s ease;
      font-size: 0.875rem;
    }
    .form-input:focus,
    .form-select:focus {
      outline: none;
      border-color: var(--primary-color);
      background: rgba(255, 255, 255, 0.15);
      box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    }
    .form-input::placeholder {
      color: rgba(255, 255, 255, 0.6);
    }
    /* Section Styles */
    .section {
      padding: 4rem 0;
    }
    .featured-activities.section {
      padding: 4rem 0 2rem 0;
    }
    .section-title {
      text-align: center;
      margin-bottom: 2.5rem;
    }
    .featured-activities .section-title {
      margin-bottom: 2rem;
    }
    .section-title h2 {
      font-size: 2.8rem;
      font-weight: 800;
      margin-bottom: 1rem;
      color: #3b82f6;
      text-shadow: 0 0 20px rgba(59, 130, 246, 0.5),
        0 2px 4px rgba(0, 0, 0, 0.3);
      letter-spacing: 1px;
      animation: glow 2s ease-in-out infinite alternate;
    }
    @keyframes glow {
      from {
        text-shadow: 0 0 20px rgba(59, 130, 246, 0.5),
          0 2px 4px rgba(0, 0, 0, 0.3);
      }
      to {
        text-shadow: 0 0 30px rgba(59, 130, 246, 0.8),
          0 2px 4px rgba(0, 0, 0, 0.3);
      }
    }
    .section-title p {
      font-size: 1.125rem;
      color: rgba(255, 255, 255, 0.9);
      max-width: 600px;
      margin: 0 auto;
    }
    /* Academic Year Theme Section - Compact */
    .academic-theme-section {
      background: var(--bg-blue-light);
      border-top: 1px solid var(--border-blue);
      border-bottom: 1px solid var(--border-blue);
      padding: 1.5rem 0;
      position: relative;
    }
    .theme-compact {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 1.5rem;
      flex-wrap: wrap;
      text-align: center;
    }
    .theme-label {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 1rem;
      font-weight: 600;
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }
    .theme-label i {
      color: var(--primary-color);
      font-size: 1.125rem;
    }
    .theme-content {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      flex-wrap: wrap;
      justify-content: center;
    }
    .theme-main {
      font-size: 1.5rem;
      font-weight: 700;
      background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 50%, #06b6d4 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .theme-sub {
      font-size: 1.5rem;
      font-weight: 700;
      background: linear-gradient(135deg, #8b5cf6 0%, #ef4444 50%, #f59e0b 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .theme-separator {
      color: var(--text-muted);
      font-size: 1.25rem;
      font-weight: 300;
      opacity: 0.7;
    }
    @keyframes slideInDown {
      from {
        opacity: 0;
        transform: translateY(-30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    @keyframes pulse {
      0%,
      100% {
        transform: scale(1);
        opacity: 1;
      }
      50% {
        transform: scale(1.1);
        opacity: 0.8;
      }
    }
    /* Responsive Design for Theme Section */
    @media (max-width: 768px) {
      .academic-theme-section {
        padding: 1.25rem 0;
      }
      .theme-compact {
        gap: 1rem;
        flex-direction: column;
      }
      .theme-label {
        font-size: 0.9rem;
      }
      .theme-main,
      .theme-sub {
        font-size: 1.25rem;
      }
      .theme-separator {
        font-size: 1rem;
      }
    }
    @media (max-width: 480px) {
      .academic-theme-section {
        padding: 1rem 0;
      }
      .theme-compact {
        gap: 0.75rem;
      }
      .theme-label {
        font-size: 0.85rem;
      }
      .theme-main,
      .theme-sub {
        font-size: 1.125rem;
      }
      .theme-separator {
        font-size: 0.9rem;
      }
    }
    /* About University Section */
    .about-university {
      background: var(--gradient-hero);
      position: relative;
      overflow: hidden;
    }
    .about-university::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(37,99,235,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
      opacity: 0.5;
      pointer-events: none;
    }
    /* Hero Section */
    .about-hero {
      margin-bottom: 4rem;
      position: relative;
      z-index: 1;
    }
    .about-hero-content {
      display: grid;
      grid-template-columns: 1.2fr 1.8fr;
      gap: 3rem;
      align-items: center;
    }
    .about-hero-text {
      color: var(--text-primary);
    }
    .university-badge {
      display: inline-flex;
      align-items: center;
      gap: 1rem;
      margin-bottom: 1.5rem;
      padding: 0.75rem 1.5rem;
      background: rgba(59, 130, 246, 0.1);
      border: 1px solid rgba(59, 130, 246, 0.3);
      border-radius: 50px;
      backdrop-filter: blur(10px);
    }
    .badge-text {
      font-size: 0.875rem;
      font-weight: 600;
      color: var(--primary-color);
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }
    .badge-year {
      font-size: 0.875rem;
      color: var(--text-muted);
      font-weight: 500;
    }
    .about-hero-text h3 {
      font-size: 2.5rem;
      font-weight: 800;
      color: var(--text-light);
      margin-bottom: 0.5rem;
      line-height: 1.2;
    }
    .university-subtitle {
      font-size: 1.125rem;
      color: var(--primary-color);
      font-weight: 500;
      margin-bottom: 1.5rem;
      font-style: italic;
    }
    .about-hero-text .hero-description {
      font-size: 1.125rem;
      line-height: 1.7;
      color: var(--text-secondary);
      margin: 0;
    }
    .about-hero-image {
      position: relative;
      border-radius: 24px;
      overflow: hidden;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
      transition: all 0.3s ease;
    }
    .about-hero-image:hover {
      transform: translateY(-8px);
      box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
    }
    .campus-image {
      width: 100%;
      aspect-ratio: 16/9;
      object-fit: cover;
      display: block;
      height: auto;
    }
    .image-overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
      padding: 2rem;
    }
    .overlay-stats {
      display: flex;
      gap: 2rem;
    }
    .overlay-stat {
      text-align: center;
    }
    .overlay-stat .stat-number {
      display: block;
      font-size: 2rem;
      font-weight: 800;
      color: white;
      margin-bottom: 0.25rem;
    }
    .overlay-stat .stat-label {
      font-size: 0.875rem;
      color: rgba(255, 255, 255, 0.8);
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }
    /* Core Values Section */
    .core-values {
      margin-bottom: 4rem;
    }
    .values-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
    }
    .value-card {
      padding: 2.5rem 2rem;
      border-radius: 20px;
      backdrop-filter: blur(15px);
      border: 1px solid var(--border-color);
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
      background: var(--bg-card);
      box-shadow: var(--shadow-sm);
    }
    .value-card::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: var(--gradient-primary);
    }
    .value-card.primary {
      background: var(--bg-card);
      border-color: var(--border-blue);
    }
    .value-card.secondary {
      background: var(--bg-card);
      border-color: var(--border-blue);
    }
    .value-card.accent {
      background: var(--bg-card);
      border-color: var(--border-blue);
    }
    .value-card:hover {
      transform: translateY(-8px);
      box-shadow: var(--shadow-blue-lg);
      border-color: var(--primary-color);
    }
    .value-icon {
      width: 60px;
      height: 60px;
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.5rem;
      font-size: 1.75rem;
      color: white;
    }
    .value-card.primary .value-icon {
      background: var(--gradient-primary);
    }
    .value-card.secondary .value-icon {
      background: var(--gradient-secondary);
    }
    .value-card.accent .value-icon {
      background: var(--gradient-activity);
    }
    .value-content h4 {
      font-size: 1.25rem;
      font-weight: 700;
      color: var(--text-light);
      margin-bottom: 1rem;
    }
    .value-content p {
      font-size: 0.95rem;
      color: var(--text-muted);
      line-height: 1.6;
      margin: 0;
    }
    .badge-hot-label {
      background: var(--gradient-success);
      color: var(--text-primary);
      padding: 0.25rem 0.75rem;
      border-radius: 0.25rem;
      font-size: 0.75rem;
      font-weight: 500;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      margin-left: 0.5rem;
    }
    /* Features Section */
    .features-section {
      margin-bottom: 4rem;
    }
    .features-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 2rem;
    }
    .feature-card {
      padding: 2rem 1.5rem;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 16px;
      backdrop-filter: blur(10px);
      transition: all 0.3s ease;
      text-align: center;
    }
    .feature-card:hover {
      transform: translateY(-5px);
      background: rgba(255, 255, 255, 0.87);
      border-color: var(--primary-color);
      box-shadow: 0 15px 30px rgba(59, 130, 246, 0.15);
    }
    .feature-icon {
      width: 50px;
      height: 50px;
      border-radius: 12px;
      background: var(--gradient-primary);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1rem;
      font-size: 1.5rem;
      color: white;
    }
    .feature-content h4 {
      font-size: 1.125rem;
      font-weight: 600;
      color: var(--text-light);
      margin-bottom: 0.75rem;
    }
    .feature-content p {
      font-size: 0.875rem;
      color: var(--text-muted);
      line-height: 1.5;
      margin: 0;
    }
    /* Statistics Section */
    .stats-section {
      background: rgba(255, 255, 255, 0.03);
      border-radius: 24px;
      padding: 3rem 2rem;
      border: 1px solid rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(15px);
    }
    .stats-container {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 2rem;
    }
    .stat-item {
      display: flex;
      align-items: center;
      gap: 1.5rem;
      padding: 1.5rem;
      background: rgba(255, 255, 255, 0.05);
      border-radius: 16px;
      transition: all 0.3s ease;
    }
    .stat-item:hover {
      transform: translateY(-3px);
      background: rgba(255, 255, 255, 0.08);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }
    .stat-icon {
      width: 50px;
      height: 50px;
      border-radius: 12px;
      background: var(--gradient-primary);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.25rem;
      color: white;
      flex-shrink: 0;
    }
    .stat-content {
      flex: 1;
    }
    .stat-number {
      font-size: 2rem;
      font-weight: 800;
      color: var(--primary-color);
      margin-bottom: 0.25rem;
      display: block;
    }
    .stat-label {
      font-size: 0.875rem;
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: 0.5px;
      font-weight: 500;
    }
    /* Responsive Design */
    @media (max-width: 1200px) {
      .about-hero-content {
        grid-template-columns: 1fr 1.5fr;
        gap: 2.5rem;
      }
      .events-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 2rem;
      }
      .activities-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 1.5rem;
      }
    }
    @media (max-width: 1024px) {
      .about-hero-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
      }
      .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
      }
      .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
      }
      .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
      }
    }
    @media (max-width: 768px) {
      .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
      }
      .stats-container {
        grid-template-columns: 1fr;
        gap: 1rem;
      }
      .about-hero-text h3 {
        font-size: 2rem;
      }
      .campus-image {
        height: 300px;
      }
      .overlay-stats {
        gap: 1rem;
      }
      .overlay-stat .stat-number {
        font-size: 1.5rem;
      }
    }
    @media (max-width: 480px) {
      .university-badge {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
      }
      .stat-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
      }
    }
    /* Events Section */
    .events-section {
      padding: 2rem 0;
    }
    /* Event Cards */
    .event-card {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 12px;
      padding: 1.5rem;
      transition: all 0.3s ease;
      backdrop-filter: blur(10px);
      position: relative;
      overflow: hidden;
    }
    .event-image {
      width: 100%;
      aspect-ratio: 16/9;
      object-fit: cover;
      border-radius: 8px;
      margin-bottom: 1rem;
      display: block;
      background: var(--bg-light);
      border: 1px solid rgba(59, 130, 246, 0.2);
      height: auto;
    }
    .event-image-placeholder {
      width: 100%;
      aspect-ratio: 16/9;
      background: var(--bg-light);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--text-muted);
      font-size: 3rem;
      border-radius: 8px;
      margin-bottom: 1rem;
      height: auto;
    }
    .event-badge {
      position: absolute;
      top: 1rem;
      right: 1rem;
      background: var(--gradient-primary);
      color: white;
      padding: 0.5rem 1rem;
      border-radius: 20px;
      font-size: 0.75rem;
      font-weight: 600;
      z-index: 2;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    }
    /* Activity Cards */
    .activity-card {
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
      border: 1px solid rgba(255, 255, 255, 0.15);
      border-radius: 16px;
      padding: 0;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      backdrop-filter: blur(10px);
      position: relative;
      overflow: hidden;
      cursor: pointer;
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), 0 2px 8px rgba(0, 0, 0, 0.1);
      display: flex;
      flex-direction: row;
      min-height: 200px;
    }
    .activity-image {
      width: 100%;
      aspect-ratio: 16/9;
      object-fit: cover;
      border-radius: 16px 16px 0 0;
      margin: 0;
      display: block;
      background: var(--bg-light);
      border: none;
      flex-shrink: 0;
      height: auto;
    }
    .activity-image-placeholder {
      width: 100%;
      aspect-ratio: 16/9;
      background: var(--bg-light);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--text-muted);
      font-size: 2.5rem;
      border-radius: 16px 16px 0 0;
      margin: 0;
      flex-shrink: 0;
      height: auto;
    }
    .activity-badge {
      position: absolute;
      top: 1rem;
      right: 1rem;
      background: var(--gradient-success);
      color: white;
      padding: 0.5rem 1rem;
      border-radius: 20px;
      font-size: 0.75rem;
      font-weight: 600;
      z-index: 2;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    }
    .activity-event-info {
      background: rgba(59, 130, 246, 0.1);
      border: 1px solid rgba(59, 130, 246, 0.2);
      border-radius: 8px;
      padding: 0.75rem;
      margin-bottom: 1rem;
      transition: all 0.3s ease;
    }
    .activity-event-info:hover {
      background: rgba(59, 130, 246, 0.15);
      border-color: rgba(59, 130, 246, 0.3);
    }
    .event-card:hover {
      background: rgba(255, 255, 255, 0.08);
      border-color: rgba(59, 130, 246, 0.3);
      transform: translateY(-4px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    }
    .event-card h3 {
      color: #ffffff !important;
      font-weight: 700;
      line-height: 1.3;
      text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    }
    .event-card p {
      color: #f1f5f9 !important;
      line-height: 1.5;
    }
    .event-card span {
      text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    }
    .activity-card:hover {
      transform: translateY(-8px) scale(1.02);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 8px 16px rgba(0, 0, 0, 0.2);
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
      border-color: rgba(255, 255, 255, 0.25);
    }
    .activity-card h4 {
      color: #ffffff !important;
      font-weight: 700;
      line-height: 1.3;
      text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    }
    .activity-card p {
      color: #f1f5f9 !important;
      line-height: 1.5;
    }
    .activity-card span {
      text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    }
    .events-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
      gap: 2.5rem;
      margin-top: 2rem;
      max-width: 1400px;
      margin-left: auto;
      margin-right: auto;
    }
    /* Events Carousel Styles */
    .events-carousel-container {
      margin: 2rem 0;
      max-width: 1400px;
      margin-left: auto;
      margin-right: auto;
    }
    #eventsCarousel .carousel-inner {
      border-radius: 12px;
      overflow: hidden;
    }
    #eventsCarousel .carousel-item {
      transition: transform 0.6s ease-in-out;
    }
    #eventsCarousel .carousel-item.active {
      display: flex;
      justify-content: center;
    }
    #eventsCarousel .carousel-item .event-card {
      flex: 0 0 auto;
      margin-bottom: 0;
      width: 100%;
      max-width: none;
    }
    /* Carousel controls styling */
    #eventsCarousel .carousel-control-prev,
    #eventsCarousel .carousel-control-next {
      width: 50px;
      height: 50px;
      background: rgba(59, 130, 246, 0.8);
      border-radius: 50%;
      top: 50%;
      transform: translateY(-50%);
      opacity: 0.8;
      transition: all 0.3s ease;
    }
    #eventsCarousel .carousel-control-prev:hover,
    #eventsCarousel .carousel-control-next:hover {
      background: rgba(59, 130, 246, 1);
      opacity: 1;
      transform: translateY(-50%) scale(1.1);
    }
    #eventsCarousel .carousel-control-prev {
      left: 20px;
    }
    #eventsCarousel .carousel-control-next {
      right: 20px;
    }
    #eventsCarousel .carousel-control-prev-icon,
    #eventsCarousel .carousel-control-next-icon {
      width: 20px;
      height: 20px;
    }
    /* Carousel indicators styling */
    #eventsCarousel .carousel-indicators {
      bottom: -50px;
    }
    #eventsCarousel .carousel-indicators button {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.3);
      border: none;
      margin: 0 5px;
      transition: all 0.3s ease;
    }
    #eventsCarousel .carousel-indicators button.active {
      background: var(--primary-color);
      transform: scale(1.2);
    }
    #eventsCarousel .carousel-indicators button:hover {
      background: rgba(59, 130, 246, 0.6);
    }
    .activities-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
      gap: 1rem;
      margin-top: 1.5rem;
      max-width: 1400px;
      margin-left: auto;
      margin-right: auto;
    }
    /* Features Grid Styles */
    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 2rem;
      margin-top: 2rem;
      max-width: 1400px;
      margin-left: auto;
      margin-right: auto;
    }
    .feature-card {
      background: var(--bg-card);
      border: 1px solid var(--border-color);
      border-radius: 16px;
      padding: 2.5rem 2rem;
      text-align: center;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
      box-shadow: var(--shadow-sm);
    }
    .feature-card::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: var(--gradient-primary);
      transform: scaleX(0);
      transition: transform 0.3s ease;
    }
    .feature-card:hover {
      transform: translateY(-8px);
      border-color: var(--primary-color);
      box-shadow: var(--shadow-blue-lg);
    }
    .feature-card:hover::before {
      transform: scaleX(1);
    }
    .feature-icon {
      width: 80px;
      height: 80px;
      margin: 0 auto 1.5rem;
      border-radius: 50%;
      background: var(--gradient-primary);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
    }
    .feature-icon i {
      font-size: 2.5rem;
      color: white;
    }
    .feature-card:hover .feature-icon {
      transform: scale(1.1) rotate(5deg);
      box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
    }
    .feature-card h3 {
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--text-primary);
      margin-bottom: 1rem;
    }
    .feature-card p {
      color: var(--text-secondary);
      line-height: 1.6;
      font-size: 1rem;
    }
    /* Stat Item Styles for Hero */
    .stat-item {
      display: flex;
      align-items: center;
      gap: 1rem;
      padding: 1rem 1.5rem;
      background: rgba(255, 255, 255, 0.8);
      border-radius: 12px;
      border: 1px solid var(--border-color);
      backdrop-filter: blur(10px);
      box-shadow: var(--shadow-sm);
    }
    .stat-item i {
      font-size: 2rem;
      color: var(--primary-color);
    }
    .stat-item h3 {
      font-size: 1.75rem;
      font-weight: 700;
      color: var(--text-primary);
      margin: 0;
    }
    .stat-item p {
      font-size: 0.875rem;
      color: var(--text-muted);
      margin: 0;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }
    /* Steps Grid Styles */
    .steps-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 3rem;
      margin-top: 3rem;
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
      position: relative;
    }
    .steps-grid::before {
      content: "";
      position: absolute;
      top: 60px;
      left: 20%;
      right: 20%;
      height: 2px;
      background: linear-gradient(90deg,
          var(--primary-color) 0%,
          var(--secondary-color) 50%,
          var(--accent-color) 100%);
      z-index: 0;
    }
    @media (max-width: 768px) {
      .steps-grid::before {
        display: none;
      }
    }
    .step-card {
      position: relative;
      background: var(--bg-card);
      border: 1px solid var(--border-color);
      border-radius: 20px;
      padding: 2.5rem 2rem;
      text-align: center;
      transition: all 0.3s ease;
      z-index: 1;
      box-shadow: var(--shadow-sm);
    }
    .step-card:hover {
      transform: translateY(-10px);
      border-color: var(--primary-color);
      box-shadow: var(--shadow-blue-lg);
    }
    .step-number {
      position: absolute;
      top: -20px;
      left: 50%;
      transform: translateX(-50%);
      width: 50px;
      height: 50px;
      background: var(--gradient-primary);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      font-weight: 800;
      color: white;
      box-shadow: var(--shadow-blue);
      z-index: 2;
    }
    .step-icon {
      width: 100px;
      height: 100px;
      margin: 1.5rem auto 1.5rem;
      border-radius: 50%;
      background: rgba(37, 99, 235, 0.08);
      border: 2px solid rgba(37, 99, 235, 0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
    }
    .step-icon i {
      font-size: 3rem;
      color: var(--primary-color);
    }
    .step-card:hover .step-icon {
      transform: scale(1.1);
      background: rgba(59, 130, 246, 0.2);
      border-color: var(--primary-color);
    }
    .step-card h3 {
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--text-primary);
      margin-bottom: 1rem;
    }
    .step-card p {
      color: var(--text-secondary);
      line-height: 1.6;
      font-size: 1rem;
    }
    @media (max-width: 1024px) {
      .activities-grid {
        gap: 1rem;
      }
      .activity-image,
      .activity-image-placeholder {
        width: 100%;
        aspect-ratio: 16/9;
        height: auto;
      }
      .activity-content {
        padding: 1rem;
      }
    }
    @media (max-width: 768px) {
      .activities-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
      }
      .activity-card {
        min-height: 350px;
      }
      .activity-image,
      .activity-image-placeholder {
        width: 100%;
        aspect-ratio: 16/9;
        height: auto;
      }
      .activity-content {
        padding: 0.875rem;
      }
    }
    .activity-card::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: var(--gradient-primary);
      opacity: 0;
      transition: opacity 0.3s ease;
    }
    .activity-card:hover::before {
      opacity: 1;
    }
    .activity-image {
      width: 200px;
      aspect-ratio: 16/9;
      object-fit: cover;
      background: var(--bg-light);
      border-radius: 20px 0 0 20px;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      display: block;
      flex-shrink: 0;
      filter: brightness(0.9) contrast(1.1);
      height: auto;
    }
    .activity-image:hover {
      transform: scale(1.05);
      filter: brightness(1) contrast(1.2);
    }
    .activity-image-placeholder {
      width: 100%;
      aspect-ratio: 16/9;
      background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(147, 51, 234, 0.1) 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255, 255, 255, 0.6);
      font-size: 2rem;
      border-radius: 16px 16px 0 0;
      flex-shrink: 0;
      border: 1px solid rgba(255, 255, 255, 0.1);
      height: auto;
    }
    /* Image error handling */
    img {
      background: var(--bg-light);
      border-radius: 8px;
    }
    img[src*="default"] {
      opacity: 0.8;
    }
    .event-image-container img,
    .activity-image-container img {
      border: 1px solid var(--border-color);
      transition: all 0.3s ease;
    }
    .event-image-container img:hover,
    .activity-image-container img:hover {
      border-color: var(--primary-color);
      box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
    }
    .activity-content {
      padding: 1rem;
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      gap: 0.5rem;
      min-height: 0;
    }
    .activity-title {
      font-size: 1.125rem;
      font-weight: 700;
      color: #ffffff;
      margin: 0;
      line-height: 1.3;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
      text-overflow: ellipsis;
      text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
      flex-shrink: 0;
      letter-spacing: 0.025em;
    }
    .activity-organization {
      color: var(--primary-color);
      font-weight: 600;
      margin-bottom: 0.75rem;
      font-size: 0.9rem;
    }
    .activity-description {
      color: var(--text-secondary);
      margin: 0;
      line-height: 1.5;
      display: -webkit-box;
      -webkit-line-clamp: 4;
      line-clamp: 4;
      -webkit-box-orient: vertical;
      overflow: hidden;
      text-overflow: ellipsis;
      flex: 1;
    }
    .activity-details {
      display: flex;
      flex-direction: column;
      gap: 0.25rem;
      margin-top: auto;
      margin-bottom: 0;
    }
    .activity-detail {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      color: var(--text-secondary);
      font-size: 0.9rem;
    }
    .activity-detail i {
      color: var(--primary-color);
      width: 16px;
    }
    .btn {
      padding: 0.75rem 1.5rem;
      border-radius: 8px;
      font-weight: 600;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      transition: all 0.3s ease;
      border: none;
      cursor: pointer;
      justify-content: center;
    }
    .btn-primary {
      background: var(--primary-color);
      color: white;
      border: none;
    }
    .btn-primary:hover {
      background: var(--primary-hover);
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
      color: white;
      text-decoration: none;
    }
    /* Empty State */
    .empty-state {
      text-align: center;
      padding: 4rem 2rem;
      color: var(--text-muted);
    }
    .empty-state i {
      font-size: 4rem;
      margin-bottom: 1rem;
      opacity: 0.5;
    }
    .empty-state h3 {
      color: var(--text-light);
      margin-bottom: 1rem;
    }
    .empty-state p {
      margin-bottom: 2rem;
    }
    /* Pagination */
    .pagination {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 1rem;
      margin-top: 3rem;
      flex-wrap: wrap;
    }
    .pagination-info {
      color: var(--text-muted);
      font-size: 0.9rem;
    }
    .pagination-btn {
      background: var(--bg-light);
      border: 1px solid var(--border-color);
      color: var(--text-primary);
      padding: 0.5rem 1rem;
      border-radius: 0.5rem;
      cursor: pointer;
      transition: all 0.3s ease;
      font-weight: 500;
    }
    .pagination-btn:hover:not(:disabled) {
      background: var(--primary-color);
      color: white;
      border-color: var(--primary-color);
    }
    .pagination-btn.active {
      background: var(--primary-color);
      color: white;
      border-color: var(--primary-color);
    }
    .pagination-btn:disabled {
      opacity: 0.5;
      cursor: not-allowed;
    }
    .pagination-ellipsis {
      color: var(--text-muted);
      padding: 0.5rem;
    }
    /* Back Button */
    .back-btn {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.75rem 1.5rem;
      background: var(--gradient-primary);
      color: white;
      text-decoration: none;
      border-radius: 8px;
      font-weight: 600;
      transition: all 0.3s ease;
      margin-top: 6rem;
      margin-bottom: 2rem;
      box-shadow: var(--shadow-md);
    }
    .back-btn:hover {
      background: var(--gradient-secondary);
      transform: translateY(-2px);
      box-shadow: var(--shadow-lg);
      color: white;
      text-decoration: none;
    }
    /* Animations */
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    @keyframes slideInLeft {
      from {
        opacity: 0;
        transform: translateX(-30px);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }
    @keyframes slideInRight {
      from {
        opacity: 0;
        transform: translateX(30px);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }
    @keyframes float {
      0%,
      100% {
        transform: translateY(0px);
      }
      50% {
        transform: translateY(-10px);
      }
    }
    .fade-in-up {
      animation: fadeInUp 0.6s ease-out;
    }
    .slide-in-left {
      animation: slideInLeft 0.6s ease-out;
    }
    .slide-in-right {
      animation: slideInRight 0.6s ease-out;
    }
    /* Responsive Design */
    @media (max-width: 768px) {
      .hero-section {
        padding: 3rem 0;
      }
      .hero-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
        max-width: 100%;
        padding: 0 1rem;
        align-items: center;
      }
      .hero-left {
        gap: 1.5rem;
        padding-right: 0;
      }
      .hero-right {
        padding-left: 0;
        padding: 0;
      }
      .hero-image-container {
        max-width: 400px;
        transform: translateY(0);
        padding: 2px;
      }
      .hero-image {
        border-radius: 16px;
      }
      .hero-main-title {
        font-size: 1.8rem;
        text-align: center;
      }
      .title-line-1,
      .title-line-2 {
        text-align: center;
      }
      .hero-description {
        padding: 1.25rem 1.5rem;
        max-width: 100%;
        text-align: center;
      }
      .university-info {
        justify-content: center;
        font-size: 1rem;
      }
      .system-description {
        font-size: 0.95rem;
      }
      .hero-badge {
        align-self: center;
        font-size: 0.8rem;
        padding: 0.6rem 1.2rem;
      }
      .hero-actions {
        gap: 1rem;
        justify-content: center;
      }
      .hero-stats-inline {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
      }
      .stat-item {
        padding: 0.75rem 1rem;
        min-width: 200px;
      }
      .hero-image {
        aspect-ratio: 16/9;
      }
      .hero-stats-external {
        flex-direction: column;
        gap: 0.75rem;
      }
      .stat-card {
        padding: 1rem 0.75rem;
        flex-direction: row;
        justify-content: center;
        gap: 1rem;
      }
      .stat-icon {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
      }
      .stat-info {
        align-items: flex-start;
        text-align: left;
      }
      .stat-number {
        font-size: 1.5rem;
      }
      .stat-label {
        font-size: 0.8rem;
      }
      .events-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 100%;
      }
      /* Events Carousel Mobile */
      .events-carousel-container {
        padding: 0 15px;
      }
      #eventsCarousel .carousel-item .event-card {
        width: 100%;
        max-width: none;
      }
      #eventsCarousel .carousel-control-prev,
      #eventsCarousel .carousel-control-next {
        width: 40px;
        height: 40px;
      }
      #eventsCarousel .carousel-control-prev {
        left: 10px;
      }
      #eventsCarousel .carousel-control-next {
        right: 10px;
      }
      #eventsCarousel .carousel-control-prev-icon,
      #eventsCarousel .carousel-control-next-icon {
        width: 16px;
        height: 16px;
      }
      .activities-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 100%;
      }
      .section-title h2 {
        font-size: 2rem;
      }
      .back-btn {
        margin-top: 5rem;
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
      }
      .pagination {
        flex-direction: column;
        gap: 0.5rem;
      }
    }
    /* Blog Section Styles */
    .featured-blogs {
      background: var(--bg-light);
    }
    .blogs-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
      margin-top: 2rem;
    }
    /* Blog Carousel Styles */
    .blog-carousel-container {
      position: relative;
      overflow: hidden;
      border-radius: 12px;
      margin: 2rem 0;
    }
    .blog-carousel-wrapper {
      display: flex;
      gap: 1rem;
      transition: transform 0.3s ease;
      padding: 0.5rem 0;
    }
    .blog-carousel-wrapper .blog-card {
      flex: 0 0 calc(33.333% - 0.67rem);
      margin-bottom: 0;
      height: 100%;
      min-height: 400px;
      display: flex;
      flex-direction: column;
    }
    /* Dynamic layout based on blog count */
    .blog-carousel-wrapper.justify-center {
      justify-content: center;
    }
    .blog-carousel-wrapper.justify-center .blog-card {
      flex: 0 0 auto;
      max-width: calc(25% - 0.75rem);
      height: 100%;
      min-height: 400px;
      display: flex;
      flex-direction: column;
    }
    /* 1 blog - full width */
    .blog-carousel-wrapper.single-blog {
      justify-content: center;
    }
    .blog-carousel-wrapper.single-blog .blog-card {
      flex: 0 0 calc(50% - 0.5rem);
      max-width: 500px;
      height: 100%;
      min-height: 400px;
      display: flex;
      flex-direction: column;
    }
    /* 2 blogs - 2 columns */
    .blog-carousel-wrapper.two-blogs {
      justify-content: center;
    }
    .blog-carousel-wrapper.two-blogs .blog-card {
      flex: 0 0 calc(50% - 0.5rem);
      height: 100%;
      min-height: 400px;
      display: flex;
      flex-direction: column;
    }
    /* 3 blogs - 3 columns */
    .blog-carousel-wrapper.three-blogs {
      justify-content: center;
    }
    .blog-carousel-wrapper.three-blogs .blog-card {
      flex: 0 0 calc(33.333% - 0.67rem);
      height: 100%;
      min-height: 400px;
      display: flex;
      flex-direction: column;
    }
    /* 4+ blogs - 3 columns with carousel */
    .blog-carousel-wrapper.four-plus-blogs {
      justify-content: flex-start;
    }
    .blog-carousel-wrapper.four-plus-blogs .blog-card {
      flex: 0 0 calc(33.333% - 0.67rem);
      height: 100%;
      min-height: 400px;
      display: flex;
      flex-direction: column;
    }
    .blog-carousel-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: rgba(59, 130, 246, 0.9);
      border: none;
      color: white;
      font-size: 1.2rem;
      cursor: pointer;
      transition: all 0.3s ease;
      z-index: 10;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .blog-carousel-nav:hover {
      background: rgba(59, 130, 246, 1);
      transform: translateY(-50%) scale(1.1);
    }
    .blog-carousel-nav.prev {
      left: 10px;
    }
    .blog-carousel-nav.next {
      right: 10px;
    }
    .blog-carousel-nav:disabled {
      opacity: 0.5;
      cursor: not-allowed;
      transform: translateY(-50%);
    }
    .blog-carousel-indicators {
      display: flex;
      justify-content: center;
      gap: 0.5rem;
      margin-top: 1rem;
    }
    .blog-carousel-indicator {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: rgba(59, 130, 246, 0.3);
      border: none;
      cursor: pointer;
      transition: all 0.3s ease;
    }
    .blog-carousel-indicator.active {
      background: var(--primary-color);
      transform: scale(1.2);
    }
    .blog-carousel-indicator:hover {
      background: rgba(59, 130, 246, 0.6);
    }
    .blog-card {
      border: none;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
      background: var(--bg-medium);
      height: 100%;
      min-height: 400px;
      color: var(--text-primary);
      display: flex;
      flex-direction: column;
    }
    .blog-card:hover {
      transform: translateY(-2px);
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    }
    .blog-image-container {
      position: relative;
      overflow: hidden;
    }
    .blog-image {
      width: 100%;
      aspect-ratio: 16/9;
      object-fit: cover;
      transition: transform 0.3s ease;
      height: auto;
    }
    .blog-card:hover .blog-image {
      transform: scale(1.05);
    }
    .blog-badges {
      position: absolute;
      top: 8px;
      right: 8px;
      display: flex;
      flex-direction: column;
      gap: 4px;
    }
    .blog-badge {
      padding: 2px 6px;
      border-radius: 4px;
      font-size: 0.7rem;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }
    .badge-new {
      background: #10b981;
      color: white;
    }
    .badge-category {
      background: #3b82f6;
      color: white;
    }
    .badge-hot {
      background: #f59e0b;
      color: white;
    }
    .blog-meta {
      font-size: 0.8rem;
    }
    .blog-meta i {
      margin-right: 4px;
    }
    .blog-card .card-title {
      color: var(--text-primary) !important;
    }
    .blog-card .card-text {
      color: var(--text-secondary) !important;
    }
    .blog-card .blog-meta {
      color: var(--text-muted) !important;
    }
    /* Blog card content layout */
    .blog-card .card-body {
      flex: 1;
      display: flex;
      flex-direction: column;
      padding: 1.25rem;
    }
    .blog-card .card-title {
      flex: 0 0 auto;
      margin-bottom: 0.75rem;
      overflow: hidden;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      line-clamp: 2;
      -webkit-box-orient: vertical;
      min-height: 2.5rem;
    }
    .blog-card .card-text {
      flex: 1;
      margin-bottom: 1rem;
      overflow: hidden;
      display: -webkit-box;
      -webkit-line-clamp: 3;
      line-clamp: 3;
      -webkit-box-orient: vertical;
    }
    .blog-card .blog-meta {
      flex: 0 0 auto;
      margin-top: auto;
    }
    @media (max-width: 768px) {
      .blogs-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
      }
      /* Blog Carousel Mobile */
      .blog-carousel-container {
        padding: 0 15px;
      }
      .blog-carousel-wrapper .blog-card {
        flex: 0 0 calc(100% - 0.5rem) !important;
        margin: 0 auto;
        max-width: 100%;
        height: 100%;
        min-height: 350px;
        display: flex;
        flex-direction: column;
      }
    }
    /* ==================== New Sections Styles ==================== */
    /* Trusted Departments Marquee */
    .trusted-departments {
      overflow: hidden;
      padding: 2rem 0;
    }
    .marquee-wrapper {
      overflow: hidden;
      position: relative;
      width: 100%;
    }
    .marquee-content {
      display: flex;
      gap: 3rem;
      animation: marquee 30s linear infinite;
    }
    .marquee-item {
      display: flex;
      align-items: center;
      gap: 1rem;
      flex-shrink: 0;
      font-weight: 500;
      color: var(--text-secondary);
    }
    @keyframes marquee {
      0% {
        transform: translateX(0);
      }
      100% {
        transform: translateX(-50%);
      }
    }
    /* Duplicate marquee for seamless loop */
    .marquee-content::after {
      content: '';
      display: flex;
      gap: 3rem;
    }
    /* Key Requirements Grid */
    .requirements-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 1.5rem;
      margin-top: 2rem;
    }
    .requirement-item {
      display: flex;
      align-items: center;
      gap: 1rem;
      padding: 1.25rem;
      background: var(--bg-secondary);
      border-radius: 12px;
      border: 1px solid var(--border-color);
      transition: all 0.3s ease;
    }
    .requirement-item:hover {
      transform: translateY(-4px);
      box-shadow: 0 8px 20px rgba(37, 99, 235, 0.15);
      border-color: var(--primary-color);
    }
    .requirement-item i {
      font-size: 1.5rem;
      color: var(--primary-color);
      flex-shrink: 0;
    }
    .requirement-item span {
      font-size: 0.95rem;
      color: var(--text-primary);
      line-height: 1.5;
    }
    /* Solutions Grid */
    .solutions-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
      margin-top: 2rem;
    }
    .solution-card {
      background: white;
      border-radius: 16px;
      padding: 2rem;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
      transition: all 0.3s ease;
    }
    .solution-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    }
    .solution-challenge {
      margin-bottom: 1.5rem;
      padding-bottom: 1.5rem;
      border-bottom: 2px solid var(--bg-light);
    }
    .solution-challenge h4 {
      font-size: 1rem;
      margin-bottom: 0.75rem;
      color: #ef4444;
    }
    .solution-answer h4 {
      font-size: 1rem;
      margin-bottom: 0.75rem;
      color: #10b981;
    }
    .solution-challenge p,
    .solution-answer p {
      font-size: 0.95rem;
      color: var(--text-secondary);
      line-height: 1.6;
      margin: 0;
      text-align: justify;
    }
    /* Comparison Table */
    .comparison-table {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2rem;
      margin-top: 2rem;
    }
    .comparison-col {
      background: white;
      border-radius: 16px;
      padding: 2.5rem;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    }
    .comparison-col h3 {
      font-size: 1.4rem;
      margin-bottom: 1.5rem;
      padding-bottom: 1rem;
      border-bottom: 2px solid var(--border-color);
    }
    .comparison-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .comparison-list li {
      padding: 0.875rem 0;
      font-size: 0.95rem;
      line-height: 1.6;
      border-bottom: 1px solid var(--bg-light);
      text-align: justify;
    }
    .comparison-list li:last-child {
      border-bottom: none;
    }
    .before-col {
      border: 2px solid #fee2e2;
      background: #fef2f2;
    }
    .before-col h3 {
      color: #dc2626;
    }
    .before-col .comparison-list li {
      color: #7f1d1d;
    }
    .after-col {
      border: 2px solid #d1fae5;
      background: #ecfdf5;
    }
    .after-col h3 {
      color: #059669;
    }
    .after-col .comparison-list li {
      color: #064e3b;
    }
    /* Who Grid */
    .who-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2rem;
      margin-top: 2rem;
    }
    .who-card {
      background: white;
      border-radius: 16px;
      padding: 2rem;
      text-align: center;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
      transition: all 0.3s ease;
    }
    .who-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 12px 30px rgba(37, 99, 235, 0.15);
    }
    .who-icon {
      width: 80px;
      height: 80px;
      margin: 0 auto 1.5rem;
      background: var(--bg-light);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .who-icon i {
      font-size: 2.5rem;
      color: var(--primary-color);
    }
    .who-card h3 {
      font-size: 1.25rem;
      margin-bottom: 1rem;
      color: var(--text-primary);
    }
    .who-card p {
      font-size: 0.95rem;
      color: var(--text-secondary);
      line-height: 1.6;
      margin: 0;
      text-align: justify;
    }
    /* Security Grid */
    .security-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 2rem;
      margin-top: 2rem;
    }
    .security-card {
      text-align: center;
      padding: 2rem 1.5rem;
      background: white;
      border-radius: 12px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
      transition: all 0.3s ease;
    }
    .security-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    }
    .security-badge {
      width: 70px;
      height: 70px;
      margin: 0 auto 1rem;
      background: var(--bg-light);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .security-badge i {
      font-size: 2rem;
      color: var(--primary-color);
    }
    .security-card h4 {
      font-size: 1.1rem;
      margin-bottom: 0.5rem;
      color: var(--text-primary);
    }
    .security-card p {
      font-size: 0.9rem;
      color: var(--text-secondary);
      margin: 0;
      text-align: justify;
    }
    /* Benefits Grid */
    .benefits-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 2rem;
      margin-top: 2rem;
    }
    .benefit-item {
      text-align: center;
      padding: 2rem;
      background: var(--bg-secondary);
      border-radius: 16px;
      transition: all 0.3s ease;
      border: 2px solid transparent;
    }
    .benefit-item:hover {
      transform: scale(1.05);
      border-color: var(--primary-color);
      box-shadow: 0 8px 25px rgba(37, 99, 235, 0.15);
    }
    .benefit-number {
      font-size: 3rem;
      font-weight: 700;
      color: var(--primary-color);
      margin-bottom: 0.5rem;
      line-height: 1;
    }
    .benefit-item h4 {
      font-size: 1.15rem;
      margin-bottom: 0.75rem;
      color: var(--text-primary);
    }
    .benefit-item p {
      font-size: 0.95rem;
      color: var(--text-secondary);
      line-height: 1.5;
      margin: 0;
      text-align: justify;
    }
    /* FAQ List */
    .faq-list {
      max-width: 900px;
      margin: 2rem auto 0;
    }
    .faq-item {
      background: white;
      border-radius: 12px;
      padding: 2rem;
      margin-bottom: 1.5rem;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
      transition: all 0.3s ease;
    }
    .faq-item:hover {
      box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
      transform: translateY(-2px);
    }
    .faq-item h4 {
      font-size: 1.15rem;
      color: var(--text-primary);
      margin-bottom: 0.875rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }
    .faq-item h4::before {
      content: '❓';
      font-size: 1.25rem;
    }
    .faq-item p {
      font-size: 0.95rem;
      color: var(--text-secondary);
      line-height: 1.7;
      margin: 0;
      text-align: justify;
    }
    /* Responsive adjustments for new sections */
    @media (max-width: 768px) {
      .comparison-table {
        grid-template-columns: 1fr;
      }
      .requirements-grid,
      .solutions-grid,
      .who-grid,
      .security-grid,
      .benefits-grid {
        grid-template-columns: 1fr;
      }
      .marquee-item {
        gap: 0.75rem;
      }
      .marquee-item span {
        font-size: 0.9rem;
      }
    }

/* === Style Block 2 === */
    .history-track-wrapper {
      position: relative;
      overflow-x: auto;
      padding-bottom: 1rem;
      -webkit-overflow-scrolling: touch;
      cursor: grab;
    }
    .history-track-wrapper:active {
      cursor: grabbing;
    }
    .history-track-wrapper:hover .history-track-animate {
      animation-play-state: paused;
    }
    .history-track-wrapper.user-scrolling .history-track-animate {
      animation-play-state: paused;
    }
    .history-track-animate {
      position: relative;
      display: flex;
      gap: 1.2rem;
      min-width: 960px;
      padding: 0 0.5rem 1rem 1rem;
      margin-left: 0;
      /* Removed auto-scroll animation - now uses manual scroll */
    }
    /* Ensure first element is fully visible */
    .history-track-wrapper {
      scroll-padding-left: 2rem;
    }
    .track-item:first-child {
      margin-left: 100px;
    }
    /* Mobile responsive for who-section */
    @media (max-width: 768px) {
      .who-section .container>div {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
      }
      /* Security section responsive - 1 column on mobile */
      .security-grid {
        grid-template-columns: 1fr !important;
      }
    }
    .history-track-wrapper::-webkit-scrollbar {
      height: 8px;
    }
    .history-track-wrapper::-webkit-scrollbar-track {
      background: #e2e8f0;
      border-radius: 999px;
    }
    .history-track-wrapper::-webkit-scrollbar-thumb {
      background: linear-gradient(90deg, #ef4444, #2563eb, #059669);
      border-radius: 999px;
    }
    @keyframes scrollTimeline {
      0% {
        transform: translateX(0);
      }
      100% {
        transform: translateX(-50%);
      }
    }
    .track-line {
      position: absolute;
      top: 28px;
      left: 0;
      right: 0;
      height: 2px;
      background: linear-gradient(90deg, #ef4444, #2563eb, #059669);
      opacity: 0.35;
      pointer-events: none;
    }
    .track-item {
      position: relative;
      flex: 0 0 280px;
      padding-top: 32px;
      animation: fadeInUp 0.6s ease;
    }
    .dot {
      position: absolute;
      top: 20px;
      left: 16px;
      width: 14px;
      height: 14px;
      border-radius: 50%;
      background: #2563eb;
      box-shadow: 0 0 0 6px rgba(37, 99, 235, 0.18);
      z-index: 2;
    }
    .track-item.accent-red .dot {
      background: #ef4444;
      box-shadow: 0 0 0 6px rgba(239, 68, 68, 0.18);
    }
    .track-item.accent-blue .dot {
      background: #2563eb;
      box-shadow: 0 0 0 6px rgba(37, 99, 235, 0.18);
    }
    .track-item.accent-green .dot {
      background: #059669;
      box-shadow: 0 0 0 6px rgba(5, 150, 105, 0.18);
    }
    .card {
      background: #fff;
      border-radius: 14px;
      padding: 1rem;
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
      border: 1px solid #e2e8f0;
      min-height: 180px;
      transition: transform 0.25s ease, box-shadow 0.25s ease;
    }
    .track-item:hover .card {
      transform: translateY(-4px);
      box-shadow: 0 22px 48px rgba(0, 0, 0, 0.12);
    }
    .card .date {
      display: inline-block;
      padding: 0.3rem 0.7rem;
      border-radius: 999px;
      background: #e2e8f0;
      color: #0f172a;
      font-weight: 700;
      font-size: 0.9rem;
      margin-bottom: 0.45rem;
    }
    .track-item.accent-red .card .date {
      background: #fee2e2;
      color: #991b1b;
    }
    .track-item.accent-blue .card .date {
      background: #dbeafe;
      color: #1e3a8a;
    }
    .track-item.accent-green .card .date {
      background: #dcfce7;
      color: #065f46;
    }
    .card h4 {
      margin: 0 0 0.35rem 0;
      font-size: 1.05rem;
      color: #0f172a;
      font-weight: 800;
      line-height: 1.35;
    }
    .card p {
      margin: 0;
      font-size: 0.95rem;
      line-height: 1.55;
      color: #475569;
    }
    .tag {
      display: inline-block;
      margin-top: 0.5rem;
      padding: 0.35rem 0.65rem;
      border-radius: 10px;
      font-size: 0.85rem;
      font-weight: 700;
      color: #0f172a;
      background: #f8fafc;
      border: 1px dashed #cbd5e1;
    }
    .track-item.highlight .card {
      background: linear-gradient(135deg, #ecfdf3 0%, #f0fdf4 100%);
      border-color: #22c55e;
      box-shadow: 0 18px 42px rgba(34, 197, 94, 0.16);
    }
    .pulse {
      animation: pulse 2s ease-in-out infinite;
    }
    .history-stats.single-row {
      margin-top: 2.2rem;
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1rem;
    }
    .stat-card {
      background: #fff;
      border-radius: 14px;
      padding: 1.5rem 1.2rem;
      text-align: center;
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
      transition: transform 0.25s ease, box-shadow 0.25s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      min-height: 120px;
    }
    .stat-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
    }
    .stat-number {
      font-size: 2rem;
      font-weight: 800;
      margin-bottom: 0.25rem;
    }
    .stat-label {
      font-size: 0.95rem;
      color: #475569;
      font-weight: 600;
    }
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(10px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    @keyframes pulse {
      0%,
      100% {
        transform: scale(1);
      }
      50% {
        transform: scale(1.08);
      }
    }
    @media (max-width: 1024px) {
      .history-track-animate {
        animation-duration: 50s;
      }
      .track-item {
        flex-basis: 260px;
      }
    }
    @media (max-width: 768px) {
      .history-track-animate {
        animation-duration: 45s;
      }
      .track-item {
        flex-basis: 240px;
      }
      .history-stats.single-row {
        grid-template-columns: repeat(2, 1fr);
      }
    }

/* === Style Block 3 === */
      @keyframes float {
        0%,
        100% {
          transform: translateY(0px);
        }
        50% {
          transform: translateY(-30px);
        }
      }
      @keyframes shimmer {
        0%,
        100% {
          opacity: 1;
        }
        50% {
          opacity: 0.6;
        }
      }
      .security-card:hover {
        transform: translateY(-12px);
        box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3) !important;
      }
