/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;600;700&family=Source+Sans+3:wght@300;400;500;600&display=swap');

/* Global Resets */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Source Sans 3', sans-serif;
  color: #1a1a1a;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
}

/* Custom Components */
  /* CSS Variables for Theme Colors */
  :root {
    --primary-blue: #1560BD;
    --digital-blue: #0070FF;
    --cyan: #00CCCC;
    --dark-cyan: #008B8B;
    --purple: #7C3AED;
    --gradient-start: #1560BD;
    --gradient-mid: #00CCCC;
    --gradient-end: #7C3AED;
  }

  /* Gradient Backgrounds */
  .gradient-hero {
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-mid) 50%, var(--gradient-end) 100%);
    position: relative;
    overflow: hidden;
  }

  .gradient-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: glow 15s ease-in-out infinite;
  }

  .gradient-card-header {
    background: linear-gradient(135deg, #7C3AED 0%, #1560BD 100%);
  }

  /* Glassmorphism */
  .glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  }

  /* Button Styles */
  .btn-primary-custom {
    background: var(--digital-blue);
    color: white;
    padding: 12px 32px;
    border-radius: 8px;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 112, 255, 0.3);
  }

  .btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 112, 255, 0.4);
    background: #0060DD;
  }

  .btn-outline-custom {
    background: transparent;
    color: white;
    padding: 12px 32px;
    border-radius: 8px;
    font-weight: 600;
    border: 2px solid white;
    transition: all 0.3s ease;
  }

  .btn-outline-custom:hover {
    background: white;
    color: var(--digital-blue);
    transform: translateY(-2px);
  }

  /* Package Cards */
  .package-card {
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 112, 255, 0.1);
    position: relative;
  }

  .package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 112, 255, 0.15);
    border-color: rgba(0, 112, 255, 0.3);
  }

  .package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gradient-start), var(--gradient-mid));
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .package-card:hover::before {
    opacity: 1;
  }

  .package-card:hover .gradient-card-header {
    background: linear-gradient(135deg, #8B5CF6 0%, #0070FF 100%);
  }

  /* Carousel Controls */
  .carousel-control-prev,
  .carousel-control-next {
    width: 60px;
    height: 60px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
  }

  .carousel-control-prev {
    left: -80px;
  }

  .carousel-control-next {
    right: -80px;
  }

  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    width: 50px;
    height: 50px;
    background-size: 50%;
    box-shadow: 0 4px 15px rgba(0, 112, 255, 0.3);
    transition: all 0.3s ease;
  }

  .carousel-control-prev:hover .carousel-control-prev-icon,
  .carousel-control-next:hover .carousel-control-next-icon {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 112, 255, 0.4);
  }

  /* Carousel Indicators */
  .carousel-indicators {
    margin-bottom: 0;
  }

  .carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--digital-blue);
    opacity: 0.3;
    border: none;
    transition: all 0.3s ease;
  }

  .carousel-indicators [data-bs-target].active {
    opacity: 1;
    transform: scale(1.2);
  }

  /* Responsive Carousel Controls */
  @media (max-width: 1200px) {
    .carousel-control-prev {
      left: -40px;
    }
    
    .carousel-control-next {
      right: -40px;
    }
  }

  @media (max-width: 992px) {
    .carousel-control-prev {
      left: 10px;
    }
    
    .carousel-control-next {
      right: 10px;
    }
    
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
      width: 40px;
      height: 40px;
    }
  }

  /* Carousel Item Transition */
  .carousel-item {
    transition: transform 0.6s ease-in-out;
  }

  /* Floating Animation */
  .floating {
    animation: floating 3s ease-in-out infinite;
  }

  /* Plan Type Cards */
  .plan-type-card {
    transition: all 0.3s ease;
  }

  .plan-type-card:hover {
    border-color: var(--digital-blue) !important;
    background: rgba(0, 112, 255, 0.05);
    transform: translateY(-2px);
  }

  .plan-type-card.selected {
    border-color: var(--digital-blue) !important;
    background: rgba(0, 112, 255, 0.1);
    box-shadow: 0 4px 15px rgba(0, 112, 255, 0.2);
  }

  /* Plan Tabs */
  .plan-tab {
    transition: all 0.3s ease;
    white-space: nowrap;
    min-width: fit-content;
  }

  .plan-tab:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 112, 255, 0.2);
  }

  /* Enhanced Badge Styles */
  .badge {
    font-weight: 600;
    letter-spacing: 0.5px;
  }

  .badge.bg-warning {
    background: linear-gradient(45deg, #ffc107, #fd7e14) !important;
  }

  .badge.bg-success {
    background: linear-gradient(45deg, #28a745, #20c997) !important;
  }

  /* Contract Chips */
  .contract-chip {
    transition: all 0.3s ease;
  }

  .contract-chip.active {
    background: var(--digital-blue) !important;
    color: white !important;
    border-color: var(--digital-blue) !important;
  }

  /* Compact Service Cards */
  .service-compact {
    transition: all 0.3s ease;
  }

  .service-compact:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15) !important;
  }

  /* Sticky Header */
  .sticky-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: white;
    transition: all 0.3s ease;
  }

  .sticky-header.scrolled {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }

  /* Top Mini Bar - Hide on Scroll */
  .top-mini-bar {
    max-height: 100px;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
    opacity: 1;
  }

  .sticky-header.scrolled .top-mini-bar {
    max-height: 0;
    opacity: 0;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  /* Mobile Menu */
  .mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(21, 96, 189, 0.98);
    backdrop-filter: blur(10px);
    z-index: 9999;
    transition: right 0.4s ease;
    overflow-y: auto;
  }

  .mobile-menu.active {
    right: 0;
  }

  .mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }

  .mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  /* Floating Action Buttons */
  .floating-buttons {
    position: fixed;
    bottom: 100px;
    right: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    text-decoration: none;
    color: white;
  }

  .floating-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  }

  .whatsapp-btn {
    background: #25D366;
  }

  .whatsapp-btn:hover {
    background: #20BA5A;
  }

  .call-btn {
    background: var(--digital-blue);
  }

  .call-btn:hover {
    background: var(--primary-blue);
  }

  /* Responsive Floating Buttons */
  @media (max-width: 768px) {
    .floating-buttons {
      bottom: 80px;
      right: 20px;
      gap: 10px;
    }

    .floating-btn {
      width: 50px;
      height: 50px;
    }

    .floating-btn img {
      width: 20px;
      height: 20px;
    }
  }

  @media (max-width: 576px) {
    .floating-buttons {
      bottom: 70px;
      right: 15px;
    }

    .floating-btn {
      width: 45px;
      height: 45px;
    }

    .floating-btn img {
      width: 18px;
      height: 18px;
    }
  }

  /* Back to Top Button */
  .back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--digital-blue);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 112, 255, 0.3);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
  }

  .back-to-top.visible {
    opacity: 1;
    visibility: visible;
  }

  .back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 112, 255, 0.4);
  }

  /* Scroll Reveal */
  .reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease;
  }

  .reveal.active {
    opacity: 1;
    transform: translateY(0);
  }

  /* Badge Styles */
  .badge-custom {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    backdrop-filter: blur(10px);
  }

/* Stats Counter */
.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: var(--digital-blue);
  font-family: 'Space Grotesk', sans-serif;
}

/* Text Gradient Utility */
.text-gradient {
  background: linear-gradient(135deg, var(--digital-blue), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Modal Features List */
.features-list {
  padding-left: 0;
  list-style: none;
}

.features-list li {
  margin-bottom: 12px;
  line-height: 1.5;
}

/* Animations */
@keyframes floating {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes glow {
  0%, 100% {
    opacity: 0.5;
  }
  50% {
    opacity: 0.8;
  }
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: var(--digital-blue);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-blue);
}

/* Modal Styles */
.modal-content {
  border-radius: 16px;
  border: none;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-header {
  border-radius: 16px 16px 0 0;
  border-bottom: none;
  padding: 1.5rem 2rem;
}

.modal-body {
  padding: 2rem;
}

.modal-footer {
  border-top: none;
  padding: 1.5rem 2rem;
  border-radius: 0 0 16px 16px;
}

/* Plan Details Modal Specific Styles */
#planDetailsContent h3 {
  color: var(--primary-blue);
  margin-bottom: 1rem;
  font-weight: 700;
}

#planDetailsContent .plan-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

#planDetailsContent .features-list {
  list-style: none;
  padding: 0;
}

#planDetailsContent .features-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #eee;
}

#planDetailsContent .features-list li:last-child {
  border-bottom: none;
}

#planDetailsContent .badge {
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
}

/* Enquiry Modal Specific Styles */
#enquiry-form .form-label {
  color: #333;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

#enquiry-form .form-control,
#enquiry-form .form-select {
  border: 2px solid #e9ecef;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

#enquiry-form .form-control:focus,
#enquiry-form .form-select:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 0.2rem rgba(21, 96, 189, 0.15);
}

#enquiry-form .invalid-feedback {
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

/* Modal Responsive Adjustments */
@media (max-width: 768px) {
  .modal-dialog {
    margin: 0.5rem;
  }

  .modal-header,
  .modal-body,
  .modal-footer {
    padding: 1rem 1.5rem;
  }

  .modal-body {
    padding: 1.5rem;
  }

  #planDetailsContent .plan-price {
    font-size: 1.5rem;
  }
}

/* Additional Responsive Fixes */
@media (max-width: 768px) {
  .py-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .py-4 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }

  .mb-5 {
    margin-bottom: 2rem !important;
  }

  .mb-4 {
    margin-bottom: 1.5rem !important;
  }

  .g-4 {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 1.5rem;
  }

  .g-5 {
    --bs-gutter-x: 2rem;
    --bs-gutter-y: 2rem;
  }

  .g-3 {
    --bs-gutter-x: 1rem;
    --bs-gutter-y: 1rem;
  }

  /* Compact card adjustments */
  .card-body p.small {
    font-size: 0.75rem !important;
  }

  .card-body small {
    font-size: 0.7rem !important;
  }

  /* Plan tabs responsive */
  .plan-tab {
    font-size: 0.9rem !important;
    padding: 8px 16px !important;
    margin-bottom: 0.5rem;
  }

  /* Package cards responsive */
  .package-card {
    margin-bottom: 1rem;
  }

  .package-card .card-body {
    padding: 1rem !important;
  }

  .package-card h5 {
    font-size: 1.1rem !important;
  }

  .package-card h2 {
    font-size: 1.5rem !important;
  }

  .package-card h3 {
    font-size: 1.3rem !important;
  }

  /* Package card buttons responsive */
  .package-card .d-flex.gap-2 {
    flex-direction: column !important;
  }

  .package-card .d-flex.gap-2 .btn {
    margin-bottom: 0.5rem;
  }

  .package-card .d-flex.gap-2 .btn:last-child {
    margin-bottom: 0;
  }
}

@media (max-width: 576px) {
  .py-5 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }

  .py-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .mb-5 {
    margin-bottom: 1.5rem !important;
  }

  .mb-4 {
    margin-bottom: 1rem !important;
  }

  .display-5 {
    font-size: 2rem;
  }

  .h2 {
    font-size: 1.5rem;
  }

  .lead {
    font-size: 1rem;
  }

  /* Compact card adjustments for mobile */
  .card-body {
    padding: 1rem !important;
  }

  .card-body h6 {
    font-size: 0.9rem !important;
  }

  .card-body p.small {
    font-size: 0.7rem !important;
  }

  .card-body small {
    font-size: 0.65rem !important;
  }
}

/* Package Dropdown Selects */
.pack-select,
.additional-select {
 font-size: 0.75rem;
 border-radius: 6px;
 transition: all 0.3s ease;
}

.pack-select:focus,
.additional-select:focus {
 border-color: var(--primary-blue);
 box-shadow: 0 0 0 0.2rem rgba(21, 96, 189, 0.25);
}

.pack-select option,
.additional-select option {
 padding: 8px;
}

/* Enhanced package card styling for dropdowns */
.package-card .card-body {
  position: relative;
}

.package-card .form-label {
  margin-bottom: 0.25rem;
  font-weight: 600;
  color: var(--primary-blue);
}

/* Elegant CTA Section Enhancements */
.hover-opacity-10:hover {
  opacity: 0.1 !important;
}

.z-index-1 {
  z-index: 1;
}

/* CTA Button Hover Effects */
.btn-primary-custom:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 35px rgba(21, 96, 189, 0.4) !important;
}

.btn-success:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4) !important;
}

/* Trust Indicators Animation */
@media (max-width: 768px) {
  .trust-indicators .d-flex {
    flex-direction: column;
    gap: 0.5rem;
  }
}

/* Elegant Card Shadow Enhancement */
.card.shadow-lg {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1) !important;
}



/* ================== NET CRACKER PLANS (NEW) ================== */

/* Optional different font only for plans */
.nc-plans-section {
    font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: #f5f7fb;
}

.nc-section-title {
    font-weight: 700;
    font-size: 2.2rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #111827;
}

.nc-section-subtitle {
    color: #6b7280;
    max-width: 620px;
    margin: 0 auto;
}

.nc-group-title {
    font-weight: 700;
    letter-spacing: 0.18em;
    font-size: 0.9rem;
    color: #6b7280;
}

/* Card base */
.nc-pricing-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 18px 35px rgba(15, 23, 42, 0.12);
    transition: transform 0.25s ease, box-shadow 0.25s ease, translate 0.25s ease;
}

.nc-pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 45px rgba(15, 23, 42, 0.16);
}

/* Header styles */
.nc-pricing-header {
    padding: 18px 18px 14px;
    color: #ffffff;
}

.nc-header-blue {
    background: linear-gradient(135deg, #111827, #2563eb);
}

.nc-header-purple {
    background: linear-gradient(135deg, #312e81, #6366f1);
}

.nc-header-teal {
    background: linear-gradient(135deg, #0f766e, #22c55e);
}

.nc-header-orange {
    background: linear-gradient(135deg, #7c2d12, #f97316);
}

.nc-header-blue-light {
    background: linear-gradient(135deg, #0f172a, #38bdf8);
}

.nc-header-purple-light {
    background: linear-gradient(135deg, #4c1d95, #a855f7);
}

.nc-header-teal-light {
    background: linear-gradient(135deg, #0f766e, #14b8a6);
}

.nc-header-orange-light {
    background: linear-gradient(135deg, #7c2d12, #fb923c);
}

.nc-header-blue-strong {
    background: linear-gradient(135deg, #0b1120, #1d4ed8);
}

.nc-header-purple-strong {
    background: linear-gradient(135deg, #312e81, #a855f7);
}

.nc-plan-name {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
}

.nc-speed-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    opacity: 0.9;
}

.nc-tax-text {
    font-size: 0.7rem;
    opacity: 0.85;
}

.nc-price-wrap {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.nc-currency {
    font-size: 0.8rem;
    font-weight: 600;
}

.nc-amount {
    font-size: 1.9rem;
    font-weight: 700;
}

.nc-old-price {
    display: inline-block;
    font-size: 0.75rem;
    text-decoration: line-through;
    opacity: 0.8;
}

/* Discount pill */
.nc-discount-pill {
    background: #fef08a;
    color: #111827;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
}

/* Big icon in header */
.nc-plan-icon {
    width: 34px;
    height: 34px;
    flex-shrink: 0;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.25));
}

/* Card body */
.nc-pricing-body {
    padding: 18px 18px 20px;
}

.nc-benefits-title,
.nc-fav-title {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #6b7280;
}

.nc-feature-list {
    list-style: none;
    padding: 0;
    margin: 8px 0 14px;
}

.nc-feature-list li {
    font-size: 0.86rem;
    color: #111827;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

.nc-feature-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* Buttons */
.nc-btn-primary {
    background: linear-gradient(135deg, #2563eb, #4f46e5);
    border: none;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 9px 0;
}

.nc-btn-primary:hover {
    background: linear-gradient(135deg, #1d4ed8, #4338ca);
}

.nc-btn-outline {
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 9px 0;
    border: 1px solid #1d4ed8;
    color: #1d4ed8;
    background: #ffffff;
}

.nc-btn-outline:hover {
    background: #1d4ed8;
    color: #ffffff;
}

/* Mobile tweaks */
@media (max-width: 575.98px) {
    .nc-section-title {
        font-size: 1.6rem;
    }
    .nc-pricing-header,
    .nc-pricing-body {
        padding: 16px;
    }
}


/* ================= FAVORITES BADGE GRID ================= */

.nc-fav-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 12px;
}

.nc-fav-badge {
    display: inline-block;
    background: #eef2ff;
    color: #4338ca;
    padding: 6px 10px;
    border-radius: 10px;
    font-size: 0.75rem;
    font-weight: 600;
    text-align: center;
    transition: all 0.25s ease;
    cursor: pointer;
    border: 1px solid #c7d2fe;
}

/* Hover effect */
.nc-fav-badge:hover {
    background: #4338ca;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(67, 56, 202, 0.35);
}
