:root {
  --primary: #1d77a9 !important;
  --primary-dark: #1565c0;
  --primary-light: #3b81a1;
  --secondary: #296da2 !important;
  --success: #66bb6a;
  --danger: #ef5350;
  --warning: #ffb74d;
  --info: #29b6f6;
  --light: #f5f5f5;
  --dark: #212121;
  --gray: #757575;
  --gray-light: #bdbdbd;
  --card-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  --hover-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Poppins", sans-serif;
  background: linear-gradient(135deg, #f0f4f8 0%, #e1e8f0 100%);
  color: var(--dark);
  min-height: 100vh;
  line-height: 1.6;
  overflow-x: hidden;
}
.container {
  margin: 0 auto;
  padding: 20px;
}
/* Login Page Styles */
.login-container {
  background: white;
  border-radius: 20px;
  box-shadow: var(--card-shadow);
  overflow: hidden;
  max-width: 450px;
  margin: 80px auto;
  position: relative;
  transform: translateY(0);
  transition: transform 0.4s ease-out;
}
.login-container:hover {
  transform: translateY(-5px);
}
.login-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
  padding: 30px 30px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.login-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("images/banner\ \(1\).png");
  background-size: auto;
  background-position: center;
  opacity: 0.1;
  z-index: 0;
}
.login-form {
  padding: 30px;
}
.form-group {
  margin-bottom: 25px;
  position: relative;
}
.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--dark);
  font-size: 14px;
  transition: all 0.3s ease;
}
.form-group:focus-within label {
  color: var(--primary);
  transform: translateY(-2px);
}
.form-control {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid var(--gray-light);
  border-radius: 12px;
  font-size: 15px;
  transition: var(--transition);
  font-family: "Poppins", sans-serif;
}
.fixed-header {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  background-color: #fff !important;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(29, 119, 169, 0.15);
}
.password-container {
  position: relative;
}
.toggle-password {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: var(--gray);
  transition: color 0.3s ease;
}
.toggle-password:hover {
  color: var(--primary);
}
.login-btn {
  width: 100%;
  padding: 15px;
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.5px;
  margin-top: 10px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.login-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: 0.5s;
  z-index: -1;
}
.login-btn:hover::before {
  left: 100%;
}
.login-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(29, 119, 169, 0.3);
}
.login-footer {
  text-align: center;
  padding: 20px 30px 30px;
  color: var(--gray);
  font-size: 14px;
}
.login-footer a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: all 0.3s ease;
}
.login-footer a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: var(--primary);
  transition: width 0.3s ease;
}
.login-footer a:hover {
  color: var(--primary-dark);
}
.login-footer a:hover::after {
  width: 100%;
}
/* Dashboard Styles */
.dashboard {
  background: white;
  border-radius: 20px;
  box-shadow: var(--card-shadow);
  overflow: hidden;
  margin: 30px;
  animation: fadeInUp 0.6s ease-out;
}
.dashboard-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
  padding: 20px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.dashboard-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("images/banner\ \(1\).png");
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  z-index: 0;
}
.logo {
  display: flex;
  align-items: center;
  gap: 15px;
  position: relative;
  z-index: 1;
}
.logo i {
  font-size: 28px;
  background: rgba(255, 255, 255, 0.2);
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.logo h1 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 24px;
}
.user-profile {
  display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(255, 255, 255, 0.15);
  padding: 10px 20px;
  border-radius: 50px;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}
.user-profile:hover {
  background: rgba(255, 255, 255, 0.25);
}
.avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-weight: 600;
  font-size: 18px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.user-profile:hover .avatar {
  transform: scale(1.1);
}
.user-info h3 {
  font-weight: 600;
  margin-bottom: 2px;
}
.user-info p {
  margin-bottom: 0px;
  font-size: 12px;
  opacity: 0.9;
}
/* Service Cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px;
  padding: 30px;
}
.service-card {
  background: white;
  border-radius: 16px;
  padding: 25px;
  box-shadow: var(--card-shadow);
  transition: var(--transition);
  border: 1px solid rgba(100, 116, 139, 0.1);
  position: relative;
  overflow: hidden;
  cursor: default;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--hover-shadow);
  border-color: rgba(29, 119, 169, 0.2);
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
}
.service-status {
  position: absolute;
  top: 20px;
  right: 20px;
  font-weight: 600;
  font-size: 14px;
  padding: 6px 12px;
  border-radius: 20px;
  z-index: 1;
}
.status-active {
  background: rgba(102, 187, 106, 0.15);
  color: var(--success);
  border: 1px solid rgba(102, 187, 106, 0.3);
}
.status-inactive {
  background: rgba(239, 68, 68, 0.15);
  color: var(--danger);
  border: 1px solid rgba(239, 68, 68, 0.3);
}
.service-icon-container {
  font-size: 40px;
  margin-bottom: 20px;
  background: rgba(29, 119, 169, 0.08);
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  transition: var(--transition);
}
.service-card:hover .service-icon-container {
  transform: scale(1.2) rotate(0deg);
  background: rgba(104, 155, 202, 0.2);
  color: #1d77a9;
  box-shadow: 0 10px 20px rgba(104, 155, 202, 0.2);
}
.service-card h3 {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--dark);
}
.service-card p {
  color: var(--gray);
  font-size: 14px;
  margin-bottom: 20px;
  line-height: 1.5;
}
.view-btn {
  display: inline-block;
  padding: 10px 50px !important;
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
  color: white;
  border: none;
  border-radius: 10px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  font-size: 14px;
  margin-top: auto;
  box-shadow: 0 4px 10px rgba(29, 119, 169, 0.2);
}
.view-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(29, 119, 169, 0.3);
}
.contact-btn {
  display: inline-block;
  padding: 10px 20px;
  background: var(--primary-light);
  color: white;
  border: none;
  border-radius: 10px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  font-size: 14px;
  margin-top: auto;
  box-shadow: 0 4px 10px rgba(29, 119, 169, 0.2);
}
.contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(29, 119, 169, 0.3);
}
/* Enhanced Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.card-decoration {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  opacity: 0.1;
  border-radius: 50%;
  z-index: 0;
}
.service-card:hover .card-decoration {
  transform: scale(1.2);
  opacity: 0.15;
  transition: all 0.4s ease;
}
.download-icon-btn {
  background: none;
  border: none;
  color: var(--primary);
  font-size: 18px;
  cursor: pointer;
  transition: color 0.3s ease;
  padding: 10px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
}
.download-icon-btn:hover {
  color: var(--primary-dark);
  background-color: rgba(29, 119, 169, 0.1);
}
/* Notification */
.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  padding: 15px 25px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transform: translateX(150%);
  transition: transform 0.3s ease-out;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 15px;
  border-left: 4px solid var(--primary);
}
.notification.show {
  transform: translateX(0);
}
.notification-icon {
  font-size: 20px;
}
.notification-success .notification-icon {
  color: var(--success);
}
.notification-error .notification-icon {
  color: var(--danger);
}
.notification-info .notification-icon {
  color: var(--info);
}
.notification-message {
  font-weight: 500;
}
.notification-close {
  margin-left: 15px;
  cursor: pointer;
  color: var(--gray);
  transition: color 0.2s;
}
.notification-close:hover {
  color: var(--dark);
}

/* Responsive Design */
@media (max-width: 768px) {
  .dashboard-header {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  .user-profile {
    width: 100%;
    justify-content: center;
  }
  .services-grid {
    grid-template-columns: 1fr;
    padding: 20px;
  }
}
/* Contact Page Styles */
.contact-container {
  background: white;
  border-radius: 20px;
  box-shadow: var(--card-shadow);
  overflow: hidden;
  margin: 50px auto;
  max-width: 600px;
  animation: fadeInUp 0.6s ease-out;
}
.contact-header {
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-light) 100%
  );
  color: white;
  padding: 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.contact-header::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}
.contact-header::after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}
.contact-header h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}
.contact-header p {
  opacity: 0.9;
  font-weight: 300;
  position: relative;
  z-index: 1;
}
.contact-content {
  padding: 30px;
}
.contact-form {
  margin-bottom: 30px;
}
.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}
.form-group {
  flex: 1;
}
.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--dark);
  font-size: 14px;
}
.form-control {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid var(--gray-light);
  border-radius: 12px;
  font-size: 15px;
  transition: var(--transition);
  font-family: "Poppins", sans-serif;
}
.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(29, 119, 169, 0.15);
}
textarea.form-control {
  min-height: 120px;
  resize: vertical;
}
.contact-info {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
  margin-bottom: 30px;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 15px;
  background: #f8fafc;
  border-radius: 12px;
  transition: var(--transition);
  position: relative;
}
.contact-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}
.contact-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: black;
  position: relative;
  cursor: help;
  transition: all 0.3s ease;
}
.contact-icon:hover {
  transform: scale(1.1);
  background: rgba(29, 119, 169, 0.1);
}
.contact-icon .tooltip {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--dark);
  color: white;
  padding: 5px 10px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  margin-bottom: 10px;
}
.contact-icon .tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 5px;
  border-style: solid;
  border-color: var(--dark) transparent transparent transparent;
}
.contact-icon:hover .tooltip {
  opacity: 1;
  visibility: visible;
}
.contact-text h3 {
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--dark);
}
.contact-text p {
  color: var(--gray);
  font-size: 14px;
}
.contact-buttons {
  display: flex;
  gap: 15px;
}
.btn {
  padding: 12px 25px;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.btn-primary {
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
  color: white;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(29, 119, 169, 0.3);
}
.btn-secondary {
  background: #f1f5f9;
  color: var(--dark);
}
.btn-secondary:hover {
  background: #e2e8f0;
  transform: translateY(-2px);
}
.back-btn {
  display: block;
  width: 100%;
  padding: 15px;
  background: #f1f5f9;
  color: var(--dark);
  border: none;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-size: 16px;
  text-align: center;
  margin-top: 20px;
}
.back-btn:hover {
  background: #e2e8f0;
  transform: translateY(-2px);
}
/* Enhanced Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Responsive Design */
@media (max-width: 768px) {
  .form-row {
    flex-direction: column;
    gap: 15px;
  }
  .contact-buttons {
    flex-direction: column;
  }
}
/* Ensure service cards can contain absolutely positioned children */
.service-card {
  position: relative;
  overflow: hidden;
}

/* Hidden by default */
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 100%;
  background: linear-gradient(to right, #00b4d8, #0077b6, #023e8a);
  background-size: 200% 100%;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1s ease;
  z-index: 2;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

/* When class is added, show animation */
.service-card.animate-border::before {
  transform: scaleX(1);
}
.footer {
  padding-top: 15px;
  background: white;
}
.user-profile {
  position: relative;
  cursor: pointer;
}

.profile-dropdown {
  display: none;
  top: 100% !important;
  right: 0 !important;
  background: white;
  list-style: none;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  border-radius: 4px;
  min-width: 160px;
}

.profile-dropdown li {
  padding: 5px 0;
}

.profile-dropdown li a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  padding: 5px 10px;
}

.profile-dropdown li a:hover {
  background-color: #f8f9fa;
  border-radius: 4px;
}

.user-profile:hover .profile-dropdown {
  display: block;
}
.option-card {
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  cursor: pointer;
  background-color: #fff;
  transition: 0.3s ease;
  font-weight: 500;
  height: 120px; /* consistent height */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.option-card:hover,
.option-card.active {
  border-color: #3a89ad;
  color: #3a89ad;
  box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.1);
}

.option-card i {
  font-size: 24px;
  display: block;
  margin-bottom: 10px;
}
.customer-name {
  font-weight: bold;
  color: #3a89ad;
  position: relative;
  display: inline-block;
  margin-bottom: 0;
}

.customer-name span {
  color: #333;
  position: relative;
  padding-bottom: 3px;
  transition: all 0.3s ease;
}

.customer-name span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background-color: #3a89ad;
  transition: width 0.4s ease;
}

.service-card:hover .customer-name span::after {
  width: 100%;
}
.claim-container {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  margin-top: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}
.form-header {
  border-bottom: 2px solid #e9ecef;
  padding-bottom: 15px;
  margin-bottom: 25px;
}
.claim-field {
  margin-bottom: 20px;
}
.claim-label {
  font-weight: 600;
  color: #495057;
  margin-bottom: 5px;
  display: block;
}
.badge-open {
  background-color: #28a745;
  color: white;
}
.badge-own-damage {
  background-color: #3c7fad;
  color: white;
}
.claim-docs {
  margin-top: 15px;
}
.claim-docs a {
  margin-right: 10px;
  margin-bottom: 10px;
}
.btn-primary {
  background-color: #3a89ad;
  border-color: #3a89ad;
}
.btn-primary:hover {
  background-color: #2c7a94;
  border-color: #2c7a94;
}
.btn-secondary {
  background-color: #6c757d;
  border-color: #6c757d;
}
.btn-secondary:hover {
  background-color: #5a6268;
  border-color: #5a6268;
}
.form-control:focus {
  border-color: #3a89ad;
  box-shadow: 0 0 0 0.2rem rgba(58, 137, 173, 0.25);
}
.invalid-feedback {
  display: none;
  font-size: 80%;
  color: #dc3545;
}
.was-validated .form-control:invalid ~ .invalid-feedback {
  display: block;
}
.was-validated .form-control:invalid {
  border-color: #dc3545;
}
.was-validated .form-control:valid {
  border-color: #28a745;
}
.status-indicator {
  padding: 8px 12px;
  border-radius: 4px;
  font-weight: 500;
  display: inline-block;
}
.status-open {
  background-color: rgba(40, 167, 69, 0.1);
  color: #28a745;
  border: 1px solid rgba(40, 167, 69, 0.2);
}
.status-closed {
  background-color: rgba(108, 117, 125, 0.1);
  color: #6c757d;
  border: 1px solid rgba(108, 117, 125, 0.2);
}
.form-section {
  background-color: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 20px;
}
.section-title {
  font-weight: 600;
  color: #3a89ad;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}
.section-title i {
  margin-right: 10px;
}
/* File upload styles */
.file-upload {
  border: 2px dashed #3a89ad;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  margin-bottom: 15px;
  transition: all 0.3s ease;
  background-color: rgba(58, 137, 173, 0.05);
}
.file-upload:hover {
  background-color: rgba(58, 137, 173, 0.1);
}
.file-upload input[type="file"] {
  display: none;
}
.file-upload-label {
  display: inline-block;
  padding: 10px 20px;
  background-color: #3a89ad;
  color: white;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.file-upload-label:hover {
  background-color: #2c7a94;
}
.file-preview {
  margin-top: 15px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.file-item {
  background-color: #f1f1f1;
  padding: 8px 12px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.file-item i {
  color: #3a89ad;
}
.file-item .remove-file {
  color: #dc3545;
  cursor: pointer;
  margin-left: 5px;
}
.upload-progress {
  width: 100%;
  margin-top: 10px;
  display: none;
}
.progress {
  height: 20px;
  border-radius: 4px;
}

/* Added styles for document list */
.document-list {
  margin-top: 15px;
}
.document-item {
  display: flex;
  align-items: center;
  padding: 8px 12px;
  background-color: #f8f9fa;
  border-radius: 4px;
  margin-bottom: 8px;
}
.document-item i {
  margin-right: 10px;
  color: #3a89ad;
}
.document-item .document-name {
  flex-grow: 1;
}
.document-item .document-actions {
  display: flex;
  gap: 8px;
}
.document-item .document-actions button {
  padding: 4px 8px;
  font-size: 0.8rem;
}
.animated-btn {
  position: relative;
  display: inline-block;
  padding: 10px 0;
  width: 130px;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  text-decoration: none;
  border: none;
  border-radius: 10px;
  background-color: #1d77a9;
  animation: blinking-glow 1.3s infinite ease-in-out;
  overflow: hidden;
  z-index: 0;
  text-decoration: none !important;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.animated-btn span {
  position: relative;
  z-index: 2;
  color: white;
  transition: color 0.3s ease;
}
.animated-btn:hover span {
  color: white; /* Ensures text stays visible on hover */
}

.animated-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #2e7aad;
  opacity: 0.5;
  z-index: 1;
  border-radius: 10px;
  animation: pulse 1.3s infinite ease-in-out;
}

@keyframes blinking-glow {
  0% {
    background-color: #38a8e0;
    box-shadow: 0 0 5px #38a8e0;
  }
  50% {
    background-color: #2e7aad;
    box-shadow: 0 0 15px #2e7aad;
  }
  100% {
    background-color: #38a8e0;
    box-shadow: 0 0 5px #38a8e0;
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.4;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.05);
  }
}

/*Remove Arrow Form Input Tag*/
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}
/*End Remove Arrow Form Input Tag*/
