  :root {
      --primary: #0d9488;
      --primary-light: #14b8a6;
      --primary-dark: #0f766e;
      --navy: #1e293b;
      --navy-dark: #0f172a;
      --cream: #f8fafc;
      --text-muted: #64748b;
      --border-color: #e2e8f0;
  }

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

  html,
  body {
      width: 100%;
      overflow-x: hidden;
      /* This cuts off anything sticking out to the right */
      margin: 0;
      padding: 0;
      scroll-behavior: smooth;
     font-family: 'Inter', system-ui, sans-serif;
      color: var(--navy);
      line-height: 1.6;
  }

  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
     font-family: 'Playfair Display', serif;
  }

  /* Navbar */
  .navbar {
      padding: 1.25rem 0;
      transition: all 0.4s ease;
  }

  .navbar.scrolled {
      background: rgba(255, 255, 255, 0.95) !important;
      backdrop-filter: blur(10px);
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
      padding: 0.75rem 0;
  }

  .buttonBg{
     background:  #0d9488 !important;
     color: white;
  }
  .navbar-brand {
      font-family: 'Playfair Display', serif;
      font-size: 1.5rem;
      font-weight: 600;
      color: #fff !important;
      display: flex;
      align-items: center;
      gap: 0.75rem;
  }

  .navbar.scrolled .navbar-brand {
      color: var(--navy) !important;
  }

  .brand-icon {
      width: 40px;
      height: 40px;
      background: var(--primary);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-weight: 700;
      font-size: 1.25rem;
      transition: transform 0.3s ease;
  }

  .navbar-brand:hover .brand-icon {
      transform: scale(1.1);
  }

  .navbar-nav .nav-link {
      color: rgba(255, 255, 255, 0.9) !important;
      font-weight: 500;
      font-size: 0.875rem;
      letter-spacing: 0.025em;
      padding: 0.5rem 1rem !important;
      position: relative;
  }

  .navbar.scrolled .nav-link {
      color: var(--navy) !important;
  }

  .nav-link::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 1rem;
      right: 1rem;
      height: 2px;
      background: var(--primary);
      transform: scaleX(0);
      transition: transform 0.3s ease;
  }

  .nav-link:hover::after {
      transform: scaleX(1);
  }

  .btn-primary-custom {
      background: var(--primary);
      color: #fff;
      border: none;
      padding: 0.75rem 1.5rem;
      border-radius: 50px;
      font-weight: 500;
      font-size: 0.875rem;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      transition: all 0.3s ease;
      box-shadow: 0 10px 30px -10px rgba(13, 148, 136, 0.4);
      text-decoration: none;
  }

  .btn-primary-custom:hover {
      background: var(--primary-dark);
      color: #fff;
      transform: scale(1.05);
      box-shadow: 0 15px 40px -10px rgba(13, 148, 136, 0.5);
  }

  .btn-outline-light-custom {
      background: transparent;
      color: #fff;
      border: 2px solid rgba(255, 255, 255, 0.5);
      padding: 0.75rem 1.5rem;
      border-radius: 50px;
      font-weight: 500;
      transition: all 0.3s ease;
      text-decoration: none;
  }

  .btn-outline-light-custom:hover {
      background: #fff;
      color: var(--navy);
      border-color: #fff;
  }

  .phone-link {
      color: rgba(255, 255, 255, 0.9);
      text-decoration: none;
      font-size: 0.875rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
  }

  .navbar.scrolled .phone-link {
      color: var(--navy);
  }

  /* Hero Section */
  .hero {
      min-height: 100vh;
      background: linear-gradient(135deg, rgba(15, 23, 42, 0.85), rgba(30, 41, 59, 0.75)),
          url('/hero.webp?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
      display: flex;
      align-items: center;
      position: relative;
      color: #fff;
  }

  .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.5rem 1rem;
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 50px;
      font-size: 0.875rem;
      margin-bottom: 2rem;
  }

  .badge-dot {
      width: 8px;
      height: 8px;
      background: var(--primary);
      border-radius: 50%;
      animation: pulse 2s infinite;
  }

  @keyframes pulse {

      0%,
      100% {
          opacity: 1;
      }

      50% {
          opacity: 0.5;
      }
  }

  .hero h1 {
      font-size: clamp(2.5rem, 6vw, 4.5rem);
      font-weight: 600;
      line-height: 1.1;
      margin-bottom: 1.5rem;
  }

  .hero h1 span {
      color: var(--primary);
  }

  .hero-text {
      font-size: 1.125rem;
      color: rgba(255, 255, 255, 0.8);
      max-width: 600px;
      margin: 0 auto 2.5rem;
  }

  .hero-buttons {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      justify-content: center;
  }

  .hero-stats {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 2rem;
      margin-top: 4rem;
      color: rgba(255, 255, 255, 0.7);
  }

  .hero-stat {
      text-align: center;
  }

  .hero-stat-value {
      font-family: 'Playfair Display', serif;
      font-size: 2rem;
      font-weight: 700;
      color: #fff;
  }

  .hero-stat-label {
      font-size: 0.875rem;
  }

  .stat-divider {
      width: 1px;
      height: 50px;
      background: rgba(255, 255, 255, 0.2);
  }

  .scroll-indicator {
      position: absolute;
      bottom: 2rem;
      left: 50%;
      transform: translateX(-50%);
      text-align: center;
      color: rgba(255, 255, 255, 0.6);
      animation: bounce 2s infinite;
  }

  @keyframes bounce {

      0%,
      100% {
          transform: translateX(-50%) translateY(0);
      }

      50% {
          transform: translateX(-50%) translateY(-10px);
      }
  }

  .scroll-indicator span {
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 0.2em;
      display: block;
      margin-bottom: 0.5rem;
  }

  /* Section Styles */
  .section-padding {
      padding: 6rem 0;
  }

  .section-label {
      color: var(--primary);
      font-weight: 500;
      font-size: 0.875rem;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      margin-bottom: 1rem;
  }

  .section-title {
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 600;
      margin-bottom: 1.5rem;
      color: var(--navy);
  }

  .section-text {
      color: var(--text-muted);
      font-size: 1.125rem;
  }

  .bg-light-custom {
      background: var(--cream);
  }

  /* Services */
  .service-card {
      background: #fff;
      border-radius: 1rem;
      padding: 2rem;
      box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.1);
      transition: all 0.4s ease;
      height: 100%;
  }

  .service-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
  }

  .service-icon {
      width: 56px;
      height: 56px;
      background: rgba(13, 148, 136, 0.1);
      border-radius: 1rem;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.5rem;
      transition: all 0.3s ease;
  }

  .service-icon i {
      font-size: 1.5rem;
      color: var(--primary);
      transition: color 0.3s ease;
  }

  .service-card:hover .service-icon {
      background: var(--primary);
      transform: scale(1.1);
  }

  .service-card:hover .service-icon i {
      color: #fff;
  }

  .service-card h3 {
      font-size: 1.25rem;
      margin-bottom: 0.75rem;
  }

  .service-card p {
      color: var(--text-muted);
      font-size: 0.875rem;
      margin-bottom: 1.25rem;
  }

  .service-features {
      list-style: none;
      padding: 0;
      margin: 0 0 1.5rem;
  }

  .service-features li {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.875rem;
      margin-bottom: 0.5rem;
  }

  .service-features li::before {
      content: '';
      width: 6px;
      height: 6px;
      background: var(--primary);
      border-radius: 50%;
  }

  .service-link {
      color: var(--primary);
      text-decoration: none;
      font-weight: 500;
      font-size: 0.875rem;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      transition: gap 0.3s ease;
  }

  .service-link:hover {
      gap: 0.75rem;
      color: var(--primary-dark);
  }

  /* Pricing */
  .pricing-card {
      background: #fff;
      border-radius: 1.5rem;
      padding: 2rem;
      border: 1px solid var(--border-color);
      transition: all 0.4s ease;
      height: 100%;
  }

  .pricing-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
  }

  .pricing-card.featured {
      background: var(--navy);
      color: #fff;
      border: none;
      transform: scale(1.05);
      box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  }

  .pricing-card.featured:hover {
      transform: scale(1.05) translateY(-10px);
  }

  .pricing-badge {
      position: absolute;
      top: -1rem;
      left: 50%;
      transform: translateX(-50%);
      background: var(--primary);
      color: #fff;
      padding: 0.375rem 1rem;
      border-radius: 50px;
      font-size: 0.75rem;
      font-weight: 600;
  }

  .pricing-card h3 {
      font-size: 1.5rem;
      margin-bottom: 0.5rem;
  }

  .pricing-card .description {
      color: var(--text-muted);
      font-size: 0.875rem;
      margin-bottom: 1.5rem;
  }

  .pricing-card.featured .description {
      color: rgba(255, 255, 255, 0.7);
  }

  .pricing-price {
      font-family: 'Playfair Display', serif;
      font-size: 3rem;
      font-weight: 700;
      margin-bottom: 1.5rem;
  }

  .pricing-price small {
      font-size: 0.875rem;
      font-weight: 400;
      font-family: 'Inter', sans-serif;
  }

  .pricing-card.featured .pricing-price small {
      color: rgba(255, 255, 255, 0.7);
  }

  .pricing-features {
      list-style: none;
      padding: 0;
      margin: 0 0 2rem;
  }

  .pricing-features li {
      display: flex;
      align-items: flex-start;
      gap: 0.75rem;
      margin-bottom: 1rem;
      font-size: 0.875rem;
  }

  .pricing-features .check-icon {
      width: 20px;
      height: 20px;
      background: rgba(13, 148, 136, 0.1);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
  }

  .pricing-card.featured .check-icon {
      background: var(--primary);
  }

  .pricing-features .check-icon i {
      font-size: 0.75rem;
      color: var(--primary);
  }

  .pricing-card.featured .check-icon i {
      color: #fff;
  }

  .pricing-card.featured .pricing-features li {
      color: rgba(255, 255, 255, 0.9);
  }

  .btn-pricing {
      width: 100%;
      padding: 1rem;
      border-radius: 50px;
      font-weight: 500;
      transition: all 0.3s ease;
  }

  .btn-pricing-dark {
      background: var(--navy);
      color: #fff;
      border: none;
  }

  .btn-pricing-dark:hover {
      background: var(--navy-dark);
      color: #fff;
  }

  .btn-pricing-light {
      background: var(--primary);
      color: #fff;
      border: none;
  }

  .btn-pricing-light:hover {
      background: var(--primary-dark);
      color: #fff;
  }

  /* About */
  .about-feature {
      background: #fff;
      border-radius: 1rem;
      padding: 1.5rem;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
      transition: all 0.3s ease;
  }

  .about-feature:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  }

  .about-feature-icon {
      width: 48px;
      height: 48px;
      background: rgba(13, 148, 136, 0.1);
      border-radius: 0.75rem;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1rem;
  }

  .about-feature-icon i {
      font-size: 1.25rem;
      color: var(--primary);
  }

  .about-feature h4 {
      font-size: 1.125rem;
      margin-bottom: 0.5rem;
  }

  .about-feature p {
      color: var(--text-muted);
      font-size: 0.875rem;
      margin: 0;
  }

  /* Contact */
  .contact-section {
      background: var(--navy);
      color: #fff;
  }

  .contact-info-item {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-bottom: 1.5rem;
  }

  .contact-info-icon {
      width: 48px;
      height: 48px;
      background: rgba(13, 148, 136, 0.2);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.3s ease;
  }

  .contact-info-item:hover .contact-info-icon {
      background: var(--primary);
  }

  .contact-info-icon i {
      font-size: 1.25rem;
      color: var(--primary);
      transition: color 0.3s ease;
  }

  .contact-info-item:hover .contact-info-icon i {
      color: #fff;
  }

  .contact-info-label {
      font-size: 0.875rem;
      color: rgba(255, 255, 255, 0.6);
  }

  .contact-info-value {
      font-weight: 500;
  }

  .contact-form-wrapper {
      background: rgba(255, 255, 255, 0.05);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 1.5rem;
      padding: 2rem;
  }

  .form-header {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      margin-bottom: 1.5rem;
  }

  .form-header-icon {
      width: 40px;
      height: 40px;
      background: var(--primary);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
  }

  .form-header-icon i {
      color: #fff;
  }

  .form-header h3 {
      font-size: 1.25rem;
      margin: 0;
  }

  .form-control-custom {
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 0.75rem;
      padding: 0.875rem 1rem;
      color: #fff;
      font-size: 0.875rem;
  }

  .form-control-custom::placeholder {
      color: rgba(255, 255, 255, 0.4);
  }

  .form-control-custom:focus {
      background: rgba(255, 255, 255, 0.15);
      border-color: var(--primary);
      box-shadow: none;
      color: #fff;
  }

  .form-label-custom {
      font-size: 0.875rem;
      color: rgba(255, 255, 255, 0.8);
      margin-bottom: 0.5rem;
  }

  .form-select-custom {
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 0.75rem;
      padding: 0.875rem 1rem;
      color: #fff;
      font-size: 0.875rem;
  }

  .form-select-custom option {
      color: var(--navy);
  }

  .form-note {
      font-size: 0.75rem;
      color: rgba(255, 255, 255, 0.5);
      text-align: center;
      margin-top: 1rem;
  }

  /* Footer */
  .footer {
      background: var(--cream);
      border-top: 1px solid var(--border-color);
  }

  .footer-brand {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      text-decoration: none;
      margin-bottom: 1.5rem;
  }

  .footer-brand span {
      font-family: 'Playfair Display', serif;
      font-size: 1.5rem;
      font-weight: 600;
      color: var(--navy);
  }

  .footer-text {
      color: var(--text-muted);
      font-size: 0.875rem;
      margin-bottom: 1.5rem;
      max-width: 300px;
  }

  .footer-contact-item {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      color: var(--text-muted);
      font-size: 0.875rem;
      margin-bottom: 0.75rem;
      text-decoration: none;
      transition: color 0.3s ease;
  }

  .footer-contact-item:hover {
      color: var(--primary);
  }

  .footer h5 {
      font-size: 1rem;
      margin-bottom: 1.25rem;
      color: var(--navy);
  }

  .footer-links {
      list-style: none;
      padding: 0;
      margin: 0;
  }

  .footer-links li {
      margin-bottom: 0.75rem;
  }

  .footer-links a {
      color: var(--text-muted);
      text-decoration: none;
      font-size: 0.875rem;
      transition: color 0.3s ease;
  }

  .footer-links a:hover {
      color: var(--primary);
  }

  .footer-bottom {
      border-top: 1px solid var(--border-color);
      padding-top: 2rem;
      margin-top: 3rem;
  }

  .footer-copyright {
      color: var(--text-muted);
      font-size: 0.875rem;
  }

  .social-links {
      display: flex;
      gap: 0.75rem;
  }

  .social-link {
      width: 40px;
      height: 40px;
      background: #fff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--text-muted);
      text-decoration: none;
      transition: all 0.3s ease;
  }

  .social-link:hover {
      background: var(--primary);
      color: #fff;
  }

  /* Animations */
  .fade-up {
      opacity: 0;
      transform: translateY(30px);
      transition: all 0.8s ease;
  }

  .fade-up.visible {
      opacity: 1;
      transform: translateY(0);
  }

  /* Mobile menu */
  .navbar-toggler {
      border: none;
      padding: 0.5rem;
  }

  .navbar-toggler:focus {
      box-shadow: none;
  }

  .navbar-toggler-icon {
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath d='M4 7h22M4 15h22M4 23h22' stroke='rgba%280,0,0,1%29' stroke-width='3' stroke-linecap='round'/%3e%3cpath d='M4 7h22M4 15h22M4 23h22' stroke='rgba%28255,255,255,1%29' stroke-width='2' stroke-linecap='round'/%3e%3c/svg%3e");
  }


  .navbar.scrolled .navbar-toggler-icon {
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2830, 41, 59, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  }

  @media (max-width: 991px) {
      .navbar-collapse {
          max-width: 100%;
          background: #fff;
          border-radius: 1rem;
          padding: 1.5rem;
          margin-top: 1rem;
          box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
          overflow-x: hidden;
      }

      .navbar-nav .nav-link {
          color: var(--navy) !important;
          padding: 0.75rem 0 !important;
      }

      .nav-link::after {
          display: none;
      }

      .navbar-actions {
          flex-direction: column;
          gap: 1rem;
          padding-top: 1rem;
          border-top: 1px solid var(--border-color);
          margin-top: 1rem;
      }

      .phone-link {
          color: var(--navy);
      }

      .stat-divider {
          display: none;
      }

      .pricing-card.featured {
          transform: none;
      }

      .pricing-card.featured:hover {
          transform: translateY(-10px);
      }
  }


  /* Login background */
  .login-bg {
      min-height: 100vh;
      background: linear-gradient(135deg, rgba(15, 23, 42, 0.85), rgba(30, 41, 59, 0.75)), url(https://img.freepik.com/free-photo/doctors-day-cute-young-handsome-man-lab-coat-glasses-eavesdropping-holding-book_140725-162868.jpg?semt=ais_hybrid&w=740&q=80) center center / cover no-repeat;
  }

  /* Ensure card stays above overlay */
  .login-bg>.container {
      position: relative;
      z-index: 1;
  }

  /* Card refinements */
  .login-card {
      max-width: 420px;
      background: rgba(255, 255, 255, 0.97);
      backdrop-filter: blur(6px);
      transition: transform .3s ease, box-shadow .3s ease;
  }

  @media (min-width: 992px) {
      .login-card {
          transform: translateX(-24px);
      }
  }

  .chatbot-wrapper {
      max-width: 500px;
      margin: 0 auto;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
      background: #fff;
      display: flex;
      flex-direction: column;
      height: 600px;
  }

  .chat-window {
      flex: 1;
      padding: 16px;
      overflow-y: auto;
      background: #f4f5f7;
  }

  .chat-message {
      display: flex;
      margin-bottom: 12px;
      align-items: flex-end;
      position: relative;
  }

  .chat-message.user {
      justify-content: flex-start;
  }

  .chat-message.user .bubble {
      background: #e0e0e0;
      color: #333;
      border-radius: 24px 24px 24px 0;
  }

  .chat-message.user img.avatar {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      margin-right: 8px;
  }

  .chat-message.bot {
      justify-content: flex-end;
      flex-direction: row-reverse;
  }

  .chat-message.bot .bubble {
      background: var(--primary);
      color: #fff;
      border-radius: 24px 24px 0 24px;
  }

  .chat-message.bot img.avatar {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      margin-left: 8px;
  }

  .bubble {
      max-width: 70%;
      padding: 12px 16px;
      font-size: 0.95rem;
      line-height: 1.4;
      word-wrap: break-word;
      position: relative;
  }

  .bubble img.file-preview {
      max-width: 200px;
      max-height: 150px;
      display: block;
      margin-top: 6px;
      border-radius: 8px;
  }

  .bubble .timestamp {
      font-size: 0.7rem;
      color: rgba(255, 255, 255, 0.6);
      position: absolute;
      bottom: -16px;
      right: 8px;
  }

  .chat-input {
      display: flex;
      border-top: 1px solid #ddd;
      padding: 8px;
  }

  .chat-input input[type="text"] {
      flex: 1;
      border: none;
      padding: 12px;
      font-size: 0.95rem;
      border-radius: 10px;
      outline: none;
  }

  .chat-input button {
      background: var(--primary);
      color: #fff;
      border: none;
      padding: 0 16px;
      margin-left: 6px;
      border-radius: 12px;
      cursor: pointer;
      font-size: 1rem;
      transition: background 0.3s;
  }

  .chat-input button:hover {
      background: #0a0f1c;
  }

  .quick-replies {
      display: flex;
      gap: 8px;
      margin-top: 8px;
      flex-wrap: wrap;
  }

  .quick-replies button {
      background: #eef1f5;
      border: none;
      padding: 6px 12px;
      border-radius: 12px;
      cursor: pointer;
      font-size: 0.85rem;
      transition: 0.2s;
  }

  .quick-replies button:hover {
      background: #d6d9de;
  }

  .chat-window::-webkit-scrollbar {
      width: 6px;
  }

  .chat-window::-webkit-scrollbar-thumb {
      background: rgba(0, 0, 0, 0.2);
      border-radius: 3px;
  }

  /* Typing effect animation */
  .typing-indicator {
      width: 36px;
      height: 12px;
      display: flex;
      justify-content: space-between;
      align-items: center;
  }

  .typing-indicator span {
      width: 6px;
      height: 6px;
      background: #fff;
      border-radius: 50%;
      animation: blink 1s infinite;
  }

  .typing-indicator span:nth-child(2) {
      animation-delay: 0.2s;
  }

  .typing-indicator span:nth-child(3) {
      animation-delay: 0.4s;
  }

  @keyframes blink {

      0%,
      80%,
      100% {
          transform: scale(0);
          opacity: 0.3;
      }

      40% {
          transform: scale(1);
          opacity: 1;
      }
  }

  .robot-text {
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      font-size: 0.9rem;
      padding: 6px 10px;
      background: rgba(0, 0, 0, 0.5);
      border-radius: 10px;
      opacity: 0;
      animation: fadeInUp 1s ease forwards;
      animation-delay: 0.5s;
  }

  @keyframes fadeInUp {
      0% {
          opacity: 0;
          transform: translate(-50%, -60%);
      }

      100% {
          opacity: 1;
          transform: translate(-50%, -50%);
      }
  }

  .card-footer {
      flex-shrink: 0;
      background-color: #fff;
  }

  /* Section Background (Dark Gradient) */
.contact-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    position: relative;
    overflow: hidden;
}

/* 1. Glassmorphism Card Style */
.glass-card {
    background: rgba(255, 255, 255, 0.03); /* Very subtle white */
    backdrop-filter: blur(12px); /* The blur magic */
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    position: relative;
    overflow: hidden;
}

/* Hover Effect: Lift and Glow */
.glass-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* Icon Container */
.icon-box {
    width: 56px;
    height: 56px;
    background: rgba(var(--bs-primary-rgb), 0.2); /* Low opacity primary color */
    color: var(--bs-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.glass-card:hover .icon-box {
    background: var(--bs-primary);
    color: #fff;
    transform: scale(1.1);
}

/* Filter Buttons */
.filter-btn {
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.7);
    background: transparent;
    padding: 8px 16px;
    font-size: 0.85rem;
    transition: 0.3s;
}

.filter-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-color: #fff;
}

.filter-btn.active {
    background: #fff;
    color: #000;
    border-color: #fff;
    font-weight: bold;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

/* Map Container Styling */
.map-container {
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    height: 500px;
}

