.pricing-table {
    border-radius: 24px;
    transition: box-shadow 0.3s;
  }
  .pricing-table:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  }
  .section-title {
    font-size: 1.5rem;
    font-weight: bold;
    text-transform: uppercase;
  }
  .contact-info span {
    font-size: 18px;
}
  .price {
    font-size: 2rem;
    font-weight: bold;
  }
  .btn-custom {
    border-radius: 50px;
    padding: 10px 20px;
  }
  .navbar-brand img {
    max-height: 60px;
  }
  .back-to-top {
    bottom: 20px;
    right: 20px;
    z-index: 1000;
  }
  .header-top {
    background-color: #f28c38;
    color: white;
    padding: 5px 0;
    font-size: 0.9rem;
  }
  .header-top .nav-link {
    color: white;
    padding: 0.25rem 0.5rem;
  }
  .header-top .nav-link:hover {
    color: #ffebcd;
  }
  .header-main {
    background-color: white;
    padding: 10px 0;
  }
  .header-main .nav-link {
    color: #333;
    font-weight: 500;
    text-transform: uppercase;
  }
  .header-main .nav-link:hover {
    color: #f28c38;
  }
  .header-main .nav-link.active {
    color: #f28c38;
    border-bottom: 2px solid #f28c38;
  }
  .header-main .contact-info {
    font-size: 0.9rem;
    color: #333;
  }
  .header-main .contact-info i {
    color: #f28c38;
  }
  .footer {
    background-color: #f28c38;
    color: white;
    padding: 40px 0;
  }
  .footer h5 {
    font-size: 1.25rem;
    font-weight: bold;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 10px;
    margin-bottom: 15px;
  }
  .contact-info {
    font-size: 2rem; /* Larger text */
    font-weight: 700; /* Bold (700 is equivalent to bold) */
  }
  .footer a {
    color: white;
    text-decoration: none;
  }
  .footer a:hover {
    color: #ffebcd;
  }
  .footer p {
    margin-bottom: 10px;
  }
  .footer ul {
    padding-left: 0;
    list-style: none;
  }
  .footer ul li {
    margin-bottom: 8px;
  }
  /* Registration Form Modal Styles */
  #dangkyModal .modal-content {
    background: url('https://cantho-fpt.vn/wp-content/uploads/2024/08/cole-keister-8V1gfeaPP1Y-unsplash.jpg') no-repeat center center;
    background-size: cover;
    border-radius: 10px;
  }
  #dangkyModal .form-container {
    background-color: rgba(255, 255, 255, 0.84);
    padding: 70px 70px 30px 70px;
    border-radius: 10px;
  }
  #dangkyModal h1 {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
  #dangkyModal .text-success {
    font-size: 1.1rem;
  }
  #dangkyModal .form-label {
    font-weight: 500;
  }
  #dangkyModal .btn-submit {
    background-color: #f28c38;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 50px;
    width: 100%;
  }
  #dangkyModal .btn-submit:hover {
    background-color: #e07b30;
  }
  
  @media (max-width: 767px) {
    .section-title {
      font-size: 1.2rem;
    }
    .price {
      font-size: 1.5rem;
    }
    .navbar-brand img {
      max-height: 40px;
    }
    .header-main .contact-info {
      font-size: 0.8rem;
    }
    #dangkyModal .form-container {
      padding: 50px 30px 10px 30px;
    }
    #dangkyModal h1 {
      font-size: 1.2rem;
    }
    #dangkyModal .text-success {
      font-size: 1rem;
    }
    .phone-bar.phone-bar-n a{
        display: none;
    }
  }


  /* Updated Modal Styles */
  .modal-content {
    background-color: var(--orange-bg);
    border-radius: 16px;
    border: none;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  }
  .modal-header {
    border-bottom: none;
    padding: 1.5rem 1rem;
    background-color: var(--orange-light);
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
  }
  .modal-title {
    color: var(--orange-dark);
    font-weight: bold;
    font-size: 1.75rem;
    text-align: center;
    width: 100%;
  }
  .modal-body {
    padding: 2rem;
  }
  .form-container {
    max-width: 600px;
    margin: 0 auto;
  }
  .form-label {
    color: var(--orange-dark);
    font-weight: 500;
  }
  .form-control {
    border-radius: 8px;
    border: 1px solid var(--orange-light);
    transition: border-color 0.3s;
  }
  .form-control:focus {
    border-color: var(--orange-primary);
    box-shadow: 0 0 0 0.2rem rgba(242, 140, 56, 0.25);
  }
  .form-check-input:checked {
    background-color: var(--orange-primary);
    border-color: var(--orange-primary);
  }
  .btn-submit {
    background-color: var(--orange-primary);
    color: white;
    border-radius: 99px;
    padding: 0.75rem 2rem;
    font-weight: 500;
    transition: background-color 0.3s;
  }
  .btn-submit:hover {
    background-color: var(--orange-dark);
  }
  .btn-close {
    filter: invert(48%) sepia(79%) saturate(2476%) hue-rotate(10deg) brightness(95%) contrast(103%);
  }
  .text-success {
    color: #28a745 !important;
  }
  .invalid-feedback {
    color: #dc3545;
  }

  
  /* Custom Orange Button */
.btn-orange {
    background-color: #FF6200;
    border-color: #FF6200;
    color: #fff;
    font-weight: 500;
    transition: background-color 0.3s ease;
  }
  
  .btn-orange:hover {
    background-color: #E55B00;
    border-color: #E55B00;
    color: #fff;
  }
  
  .bg-orange {
    background-color: #FF6200;
  }
  
  .text-orange {
    color: #FF6200;
  }
  
  /* Contact Buttons */
  #gom-all-in-one {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }
  
  .button-contact {
    margin-bottom: 10px;
  }
  
  .phone-vr {
    position: relative;
    width: 60px;
    height: 60px;
  }
  
  .phone-vr-circle-fill {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    animation: pulse 2s ease infinite;
  }
  html,
  body {
    position: relative;
    height: 100%;
  }

  body {
    background: #eee;
    font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
    font-size: 14px;
    color: #000;
    margin: 0;
    padding: 0;
  }

  swiper-container {
    width: 100%;
    height: 100%;
  }

  swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .phone-vr-img-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    /* background: #FF6200; */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .phone-vr-img-circle img {
    width: 30px;
    height: 30px;
  }
  
  .phone-bar {
    display: none;
    background: #FF6200;
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    margin-bottom: 10px;
    text-decoration: none;
  }
  
  .phone-bar:hover {
    background: #E55B00;
  }
  
  .phone-bar .text-phone {
    font-size: 14px;
    font-weight: 500;
  }
  
  /* Animation for Contact Buttons */
  @keyframes pulse {
    0% {
      transform: translate(-50%, -50%) scale(1);
      opacity: 0.5;
    }
    50% {
      transform: translate(-50%, -50%) scale(1.2);
      opacity: 0.3;
    }
    100% {
      transform: translate(-50%, -50%) scale(1);
      opacity: 0.5;
    }
  }
  
  /* General Styles */
  .section-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
  }
  
  .pricing-table {
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
  }
  
  .pricing-table:hover {
    transform: translateY(-5px);
  }
  
  .btn-custom {
    padding: 10px 20px;
    font-size: 1rem;
  }
  
  .price {
    font-size: 1.5rem;
    font-weight: 700;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .section-title {
      font-size: 1.2rem;
    }
  
    .btn-custom {
      font-size: 0.9rem;
      padding: 8px 16px;
    }
  
    .price {
      font-size: 1.3rem;
    }
  
    .pricing-table {
      padding: 1rem;
    }
  
    #gom-all-in-one {
      bottom: 10px;
      right: 10px;
    }
  
    .phone-vr {
      width: 50px;
      height: 50px;
    }
  
    .phone-vr-img-circle {
      width: 40px;
      height: 40px;
    }
  
    .phone-vr-img-circle img {
      width: 25px;
      height: 25px;
    }
  
    .phone-bar {
      display: block;
      font-size: 12px;
    }
  }
  
  @media (max-width: 576px) {
    .row.g-3 .col-6 {
      flex: 0 0 100%;
      max-width: 100%;
    }
  
    .modal-dialog {
      max-width: 95% !important;
    }
  
    .form-container h1 {
      font-size: 1.5rem;
    }
  
    .phone-bar .text-phone {
      font-size: 12px;
    }
    .header-main.border-bottom{
      display: none;
    }
  }


  