#slider-section {
    position: relative;
    height: 100vh;
    margin-top: 0;
  }

  .carousel-item {
    position: relative;
    background: linear-gradient(180deg, #021C37 0%, #041C35 7%, rgba(21, 27, 33, 0) 75%, rgba(27, 26, 26, 0) 100%), url('../images/slider-1.png') left no-repeat;
    /* background-size: cover; */
    height: 100vh;
    z-index: 1;
  }

  .carousel-item img {
    width: 100%;
    height: auto;
  }

  .carousel-caption {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    text-align: left;
    color: white;
    padding: 20px;
    border-radius: 10px;
    max-width: 60%;
    z-index: 1;
  }

  .carousel-caption h1 {
    font-family: Anton;
    font-size: 80px;
    font-weight: 400;
    line-height: 102px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;

  }

  .carousel-caption p {
    font-size: 1.2rem;
    font-family: inter;
  }

  .btn-book {
    font-size: 1rem;
    padding: 10px 30px;
    background-color: #0F3CC9;
    color: white;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    font-family: roboto;
  }

  .btn-book:hover {
    background-color: #0056b3;
    text-decoration: none;
  }

  .btn-book svg {
    margin-left: 10px;
    width: 20px;
    height: auto;
  }

  .navbar {
    background-color: transparent !important;
    position: absolute;
    width: 100%;
    z-index: 10;
    border-bottom: 1px solid #3B5F8E;
  }

  .navbar-brand img {
    width: 75px;
    height: 75px;
  }

  .navbar-nav .nav-link {
    color: white !important;
    margin-left: 20px;
    font-family: inter;
  }

  .navbar-nav .nav-link:hover {
    color: #f8f9fa !important;
  }

  .navbar-icons {
    display: flex;
    align-items: center;
    margin-left: auto;
  }

  .navbar-icons .icon {
    font-size: 1.5rem;
    margin-left: 20px;
    color: white;
  }

  .navbar-icons .icon:hover {
    color: #f8f9fa;
  }

  @media (max-width: 768px) {
    .carousel-caption h1 {
      font-size: 2rem;
    }

    .carousel-caption p {
      font-size: 1rem;
    }

    .carousel-item {
      height: 50vh;
    }

    .btn-book {
      font-size: 0.9rem;
    }

    .navbar-collapse {
      text-align: center;
    }

    .navbar-nav {
      margin-top: 10px;
    }
  }
  .service-section {
          display: flex;
          flex-wrap: wrap;
          justify-content: space-between;
          align-items: center;
          padding: 50px;
          background-color: #fff;
      }

      .service-section .text-content {
          flex: 1 1 50%;
          max-width: 600px;
          padding-right: 20px;
      }

      .service-section h2 {
        font-size: 45px;
        font-weight: 400;
        line-height: 64px;
        text-align: left;
        text-underline-position: from-font;
        text-decoration-skip-ink: none;
        color: #131314;
        font-family: Anton;
      }

      .service-section p {
        font-size: 20px;
        font-weight: 400;
        line-height: 35px;
        text-align: left;
        text-underline-position: from-font;
        text-decoration-skip-ink: none;
        font-family: inter;
      }

      .service-section .images {
          flex: 1 1 50%;
          position: relative;
          display: flex;
          justify-content: center;
          align-items: center;
      }

      .service-section .images img {
          max-width: 50%;
          height: auto;
          border-radius: 8px;
      }

      

      .button {
          display: inline-block;
          padding: 10px 20px;
          background-color: #003bff;
          color: white;
          text-decoration: none;
          border-radius: 4px;
          text-align: center;
          margin-top: 20px;
      }

      .button:hover {
          background-color: #0029cc;
      }

      @media (max-width: 768px) {
          .service-section {
              flex-direction: column;
              text-align: center;
          }

          .service-section .text-content,
          .service-section .images {
              flex: 1 1 100%;
              padding: 0;
          }

          .service-section .images {
              margin-top: 20px;
          }
      }

      /* Section background styling */
  .action-section {
    background-color: #01112B;
    padding: 40px 0;
  }

  .container-cards {
    max-width: 1200px;
    margin: 54px auto;
    padding: 0 20px;
  }

  .action-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    gap: 15px;
  }

  .action-buttons .action-card {
    flex: 1 1 calc(25% - 30px); /* 4 cards in desktop view */
    text-align: center;
    padding: 20px;
    background-color: #01112B; /* Initial card color matches section background */
    border: 1.26px solid #363636; /* Border color and width */
    border-radius: 10px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    color: white;
    cursor: pointer;
    min-height: 280px; /* Fixed height for all cards */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; /* Center content */
  }

  .action-buttons .action-card:hover {
    background-color: #0056b3; /* Change color on hover */
    transform: scale(1.05);
  }

  .action-buttons .action-card img {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
  }

  .action-buttons .action-card p {
    font-family: Anton, sans-serif;
    font-size: 18px; /* Updated font size */
    font-weight: 400;
    line-height: 1.5;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    margin: 0;
  }

  /* Modern Modal Styling */
  .modern-modal {
    border: none;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  }

  .modern-modal-header {
    background: linear-gradient(135deg, #041C35 0%, #0F3CC9 100%);
    border: none;
    padding: 30px;
    position: relative;
    overflow: hidden;
  }

  .modern-modal-header::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="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
  }

  .modal-title-wrapper {
    position: relative;
    z-index: 2;
    text-align: center;
    flex: 1;
  }

  .service-icon-wrapper {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
  }

  .service-icon {
    font-size: 24px;
    color: white;
  }

  .modern-modal .modal-title {
    color: white;
    font-size: 28px;
    font-weight: 700;
    margin: 0;
    font-family: 'Anton', sans-serif;
  }

  .modal-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin: 5px 0 0 0;
    font-weight: 400;
  }

  .modern-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
  }

  .modern-close-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
  }

  .modern-modal-body {
    background: #f8f9fa;
    padding: 40px;
    position: relative;
  }

  /* Progress Steps */
  .form-progress {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    position: relative;
  }

  .form-progress::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 30px;
    right: 30px;
    height: 2px;
    background: #e9ecef;
    z-index: 1;
  }

  .progress-step {
    position: relative;
    z-index: 2;
    text-align: center;
    flex: 1;
  }

  .step-number {
    width: 40px;
    height: 40px;
    background: #e9ecef;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-weight: 600;
    color: #6c757d;
    transition: all 0.3s ease;
    border: 3px solid white;
  }

  .progress-step.active .step-number {
    background: linear-gradient(135deg, #0F3CC9, #667eea);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(15, 60, 201, 0.3);
  }

  .progress-step.completed .step-number {
    background: #28a745;
    color: white;
  }

  .step-label {
    font-size: 12px;
    color: #6c757d;
    font-weight: 500;
  }

  .progress-step.active .step-label {
    color: #0F3CC9;
    font-weight: 600;
  }

  /* Form Steps */
  .form-step {
    display: none;
    animation: fadeInUp 0.5s ease;
  }

  .form-step.active {
    display: block;
  }

  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Modern Form Groups */
  .modern-form-group {
    margin-bottom: 25px;
    position: relative;
  }

  .modern-label {
    display: flex;
    align-items: center;
    font-weight: 600;
    color: #495057;
    margin-bottom: 8px;
    font-size: 14px;
  }

  .modern-label i {
    margin-right: 8px;
    color: #0F3CC9;
    width: 16px;
  }

  .modern-input {
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 15px 20px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  }

  .modern-input:focus {
    border-color: #0F3CC9;
    box-shadow: 0 0 0 3px rgba(15, 60, 201, 0.1);
    outline: none;
  }

  .input-focus-border {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #0F3CC9, #667eea);
    transition: width 0.3s ease;
  }

  .modern-input:focus + .input-focus-border {
    width: 100%;
  }

  /* Input Groups */
  .modern-input-group {
    display: flex;
    align-items: stretch;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  }

  .country-code {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-right: none;
    color: #6c757d;
    font-weight: 600;
    padding: 15px 12px;
    font-size: 14px;
  }

  .btn-otp {
    background: linear-gradient(135deg, #0F3CC9, #667eea);
    border: none;
    color: white;
    padding: 15px 20px;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
  }

  .btn-otp:hover {
    background: linear-gradient(135deg, #0a2a8a, #5a6fd8);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(15, 60, 201, 0.3);
  }

  /* Service Info Card */
  .service-info-card {
    background: linear-gradient(135deg, #fff3cd, #ffeaa7);
    border: 1px solid #ffeaa7;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    margin-top: 20px;
  }

  .service-info-icon {
    width: 40px;
    height: 40px;
    background: #ffc107;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: white;
    font-size: 18px;
  }

  .service-info-content h6 {
    margin: 0 0 5px 0;
    color: #856404;
    font-weight: 600;
  }

  .service-info-content p {
    margin: 0;
    color: #856404;
    font-size: 14px;
  }

  /* OTP Verification */
  .otp-verification-wrapper {
    text-align: center;
  }

  .otp-header {
    margin-bottom: 30px;
  }

  .otp-icon {
    font-size: 48px;
    color: #0F3CC9;
    margin-bottom: 15px;
  }

  .otp-header h5 {
    color: #495057;
    font-weight: 700;
    margin-bottom: 8px;
  }

  .otp-header p {
    color: #6c757d;
    font-size: 14px;
  }

  .otp-input-group {
    display: flex;
    gap: 10px;
    align-items: center;
  }

  .otp-input {
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 2px;
  }

  .btn-verify {
    background: linear-gradient(135deg, #28a745, #20c997);
    border: none;
    color: white;
    padding: 15px 25px;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
  }

  .btn-verify:hover {
    background: linear-gradient(135deg, #218838, #1ea085);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
  }

  .otp-timer {
    margin-top: 15px;
    font-size: 14px;
    color: #6c757d;
  }

  .btn-resend {
    background: none;
    border: none;
    color: #0F3CC9;
    font-weight: 600;
    text-decoration: underline;
    cursor: pointer;
  }

  .otp-error {
    background: #f8d7da;
    color: #721c24;
    padding: 12px;
    border-radius: 8px;
    margin-top: 15px;
    display: flex;
    align-items: center;
    font-size: 14px;
  }

  .otp-error i {
    margin-right: 8px;
  }

  /* Confirmation Step */
  .confirmation-wrapper {
    text-align: center;
  }

  .success-animation {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #28a745, #20c997);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    animation: pulse 2s infinite;
  }

  .success-animation i {
    font-size: 36px;
    color: white;
  }

  @keyframes pulse {
    0% {
      transform: scale(1);
      box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.7);
    }
    70% {
      transform: scale(1.05);
      box-shadow: 0 0 0 10px rgba(40, 167, 69, 0);
    }
    100% {
      transform: scale(1);
      box-shadow: 0 0 0 0 rgba(40, 167, 69, 0);
    }
  }

  .user-details-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    margin-top: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }

  .detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #f8f9fa;
  }

  .detail-item:last-child {
    border-bottom: none;
  }

  .detail-label {
    font-weight: 600;
    color: #6c757d;
  }

  .detail-value {
    color: #495057;
    font-weight: 500;
  }

  /* Modal Footer */
  .modern-modal-footer {
    background: white;
    border: none;
    padding: 25px 40px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
  }

  .footer-buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }

  .modern-btn-secondary {
    background: #6c757d;
    border: none;
    border-radius: 12px;
    padding: 12px 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .modern-btn-secondary:hover {
    background: #5a6268;
    transform: translateY(-1px);
  }

  .modern-btn-primary {
    background: linear-gradient(135deg, #0F3CC9, #667eea);
    border: none;
    border-radius: 12px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .modern-btn-primary:hover {
    background: linear-gradient(135deg, #0a2a8a, #5a6fd8);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(15, 60, 201, 0.3);
  }

  .modern-btn-success {
    background: linear-gradient(135deg, #28a745, #20c997);
    border: none;
    border-radius: 12px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .modern-btn-success:hover {
    background: linear-gradient(135deg, #218838, #1ea085);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
  }

  /* Responsive Design */
  @media (max-width: 768px) {
    .modern-modal {
      margin: 10px;
      border-radius: 15px;
    }

    .modern-modal-header {
      padding: 20px;
    }

    .modern-modal-body {
      padding: 25px;
    }

    .modern-modal-footer {
      padding: 20px 25px;
    }

    .footer-buttons {
      flex-direction: column;
      gap: 10px;
    }

    .footer-buttons .btn {
      width: 100%;
      justify-content: center;
    }

    .otp-input-group {
      flex-direction: column;
    }

    .modern-input-group {
      flex-direction: column;
    }

    .country-code {
      border-right: 2px solid #e9ecef;
      border-bottom: none;
    }
  }

  .footer-logo {
    width: 260px;
  }

  .footer-heading {
    font-family: Anton, sans-serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 36.13px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
  }

  .footer-link {
    font-family: Inter, sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 40px;
    text-align: left;
    text-decoration: none;
    color: #cccccc;
  }

  .footer-link:hover {
    color: #F9B200 !important;
  }

  .footer-arrow {
    width: 12px;
    margin-right: 8px;
    vertical-align: middle;
  }

  .sr-network-section {
    background-color: #061e42;
    padding: 50px 0;
    color: white;
    position: relative;
  }

  .sr-text h2 {
    font-size: 42px;
    line-height: 62px;
    text-align: left;
  }

  .welcome-text {
    font-family: "Beth Ellen", cursive;
    font-weight: 400;
    text-decoration: underline;
  }

  .sr-title {
    font-family: "Anton", sans-serif;
    font-weight: 400;
  }

  .sr-video {
    margin-top: 20px;
    border-radius: 8px;
    overflow: hidden;
  }

  .sr-video iframe {
    width: 100%;
    height: 315px;
    border-radius: 8px;
  }

  .sr-man-img {
    position: absolute;
    bottom: 0;
    right: 0;
    max-width: 110%;
    height: 480px;
  }

  .contact-section {
    padding: 50px 0;
  }

  .contact-heading {
    font-family: Inter, sans-serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 29.05px;
    color: #131314;
  }

  .contact-title {
    font-family: Anton, sans-serif;
    font-size: 45px;
    font-weight: 400;
    line-height: 64px;
    color: #131314;
  }

  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .contact-input,
  .contact-textarea {
    background: #F5F5F5;
    border: none;
    padding: 10px;
    font-size: 16px;
  }

  .contact-textarea {
    height: 100px;
  }

  .contact-submit {
    background: #0F3CC9;
    border: 1px solid #A39999;
    color: white;
    font-family: Inter, sans-serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 29.05px;
    text-align: center;
    padding: 10px;
    width: 100%;
    border-radius: 70px;
  }

  .contact-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
  }

  .contact-icon {
    font-family: Anton, sans-serif;
    font-size: 32px;
    font-weight: 400;
    line-height: 48.17px;
    color: #000000;
    display: flex;
    align-items: center;
    gap: 5px;
  }

  .contact-map {
    width: 100%;
    height: 250px;
  }

  /* Service Headline Styling - white text on dark background */
  .service-headline {
    font-family: 'Anton', sans-serif;
    font-size: 42px;
    font-weight: 400;
    color: #ffffff !important;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  }

  .service-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    color: #ffffff !important;
    font-weight: 400;
    margin-bottom: 0;
    opacity: 0.8;
  }

  /* Responsive adjustments for service headline */
  @media (max-width: 768px) {
    .service-headline {
      font-size: 32px;
      letter-spacing: 1px;
    }
    
    .service-subtitle {
      font-size: 16px;
    }
  }

  /* Google Play Store Icon Styling */
  .playstore-icon {
    height: 45px !important;
    transition: all 0.3s ease;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    filter: brightness(1.1) contrast(1.1);
  }

  .playstore-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    filter: brightness(1.2) contrast(1.2);
  }

  /* Social Media Icons Styling */
  .social-icon {
    font-size: 20px;
    transition: all 0.3s ease;
    padding: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .social-icon:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    color: #F9B200 !important;
  }

  /* Google Play Store Badge Styling */
  .google-play-badge {
    background: #000000;
    border-radius: 8px;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    min-width: 140px;
  }

  .google-play-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    background: #1a1a1a;
  }

  .play-badge-content {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .google-play-badge i {
    font-size: 24px;
    color: #ffffff;
  }

  .play-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
  }

  .play-label {
    font-size: 10px;
    color: #ffffff;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .play-store {
    font-size: 14px;
    color: #ffffff;
    font-weight: 600;
    font-family: 'Roboto', sans-serif;
  }

  /* Service Card Section Styling */
  .service-card-section {
    padding: 50px 0;
    background-color: #fff;
  }

  .card-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0;
  }

  .card-main-section {
    flex: 1;
    text-align: center;
    padding: 24px;
  }

  .card-main-section .card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin-bottom: 20px;
  }

  .card-main-section .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  }

  .card-main-section .card img {
    width: 100%;
    height: 440px;
    object-fit: cover;
  }

  .card-title {
    font-family: 'Anton', sans-serif;
    font-size: 24px;
    font-weight: 400;
    color: #131314;
    margin-bottom: 10px;
    text-transform: uppercase;
  }

  .card-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #6c757d;
    line-height: 1.5;
    margin: 0;
  }

  /* Pricing Section Styling */
  .pricing-section {
    background-color: #F8F8F8;
    padding: 50px 0;
    font-family: 'Inter', sans-serif;
    text-align: center;
  }

  .pricing-section-title {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #0F3CC9;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
  }

  .pricing-section-subtitle {
    font-family: 'Anton', sans-serif;
    font-size: 42px;
    font-weight: 400;
    color: #131314;
    margin-bottom: 30px;
  }

  /* Toggle Switch */
  .pricing-section-toggle {
    display: inline-flex;
    background: #fff;
    border-radius: 30px;
    padding: 4px;
    border: 1px solid #ccc;
    overflow: hidden;
    margin-bottom: 30px;
  }

  .pricing-section-toggle-btn {
    font-size: 16px;
    font-weight: 600;
    border: none;
    padding: 10px 25px;
    cursor: pointer;
    background: transparent;
    color: #131314;
    transition: 0.3s ease;
    border-radius: 30px;
  }

  .pricing-section-toggle-btn.active {
    background: #0F3CC9;
    color: white;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
  }

  /* Pricing Cards */
  .pricing-section-card {
    border: 1px solid #BBBBBB;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    background: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: 0.3s ease;
    margin-top: 20px;
    position: relative;
    height: 450px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .pricing-section-card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  }

  .pricing-section-card-title {
    font-family: 'Anton', sans-serif;
    font-size: 24px;
    font-weight: 400;
    color: #131314;
    margin-bottom: 15px;
    text-transform: uppercase;
  }

  .pricing-section-card-price {
    font-family: 'Anton', sans-serif;
    font-size: 36px;
    font-weight: 400;
    color: #131314;
    margin-bottom: 5px;
  }

  .pricing-section-card-tax {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 15px;
  }

  .pricing-section-divider {
    border: none;
    height: 1px;
    background: #e9ecef;
    margin: 15px 0;
  }

  .pricing-section-card-desc {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 20px;
    flex-grow: 1;
  }

  .pricing-section-card-link {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #0F3CC9;
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 15px;
    display: inline-block;
  }

  .pricing-section-card-link:hover {
    color: #0a2a8a;
  }

  .pricing-section-card-btn {
    background: #333;
    color: white;
    padding: 12px 20px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: bold;
    border: none;
    margin-top: 10px;
    transition: 0.3s ease;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
  }

  .pricing-section-card:hover .pricing-section-card-btn {
    background: white;
    color: #131314;
  }

  /* Additional pricing card styles for dynamic content */
  .pricing-section-card-free-product {
    font-size: 16px;
    color: #333;
    font-weight: bold;
    margin-bottom: 10px;
  }

  .pricing-section-card-discount {
    font-size: 16px;
    color: #FF6347;
    font-weight: bold;
    margin-bottom: 15px;
  }

  .pricing-section .plan-details {
    display: none;
    background: #f8faff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    margin-top: 12px;
    padding: 16px 18px;
    text-align: left;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  }
  .pricing-section .plan-details ul {
    margin: 0;
    padding-left: 18px;
  }
  .pricing-section .plan-details li {
    font-size: 15px;
    color: #333;
    margin-bottom: 6px;
    line-height: 1.5;
  }

  /* Description Section Styling */
  .description-section {
    background-color: #ffffff;
    padding: 80px 0;
  }

  .description-section .card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
  }

  .description-section .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  }

  .description-section .card-img-top {
    height: 250px;
    object-fit: cover;
    transition: all 0.3s ease;
  }

  .description-section .card:hover .card-img-top {
    transform: scale(1.05);
  }

  .description-section .card-body {
    padding: 30px;
  }

  .description-section .card-title {
    font-family: 'Anton', sans-serif;
    font-size: 28px;
    font-weight: 400;
    color: #131314;
    margin-bottom: 20px;
    text-transform: uppercase;
  }

  .description-section .card-text {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #6c757d;
    margin: 0;
  }

  /* Responsive adjustments */
  @media (max-width: 768px) {
    .card-section {
      flex-direction: column;
    }
    
    .card-main-section {
      flex: none;
      width: 100%;
    }
    
    .pricing-section-subtitle {
      font-size: 32px;
    }
    
    .pricing-section-card {
      height: auto;
      min-height: 400px;
      margin-bottom: 20px;
    }
    
    .description-section {
      padding: 50px 0;
    }
    
    .description-section .card-body {
      padding: 20px;
    }
    
    .description-section .card-title {
      font-size: 24px;
    }
    
    .description-section .card-text {
      font-size: 14px;
    }
    
    .description-section .card-img-top {
      height: 200px;
    }
  }

  /* Footer Contact Section Styling */
  .footer-contact-title {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 12px;
    color: #fff;
    letter-spacing: 1px;
  }

  .footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .footer-contact-list li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: #e0e0e0;
    font-size: 1rem;
  }

  .footer-contact-icon {
    display: inline-block;
    width: 22px;
    height: 22px;
    margin-right: 10px;
    font-size: 1.2rem;
  }

  .footer-contact-icon.location::before {
    content: "\1F4CD"; /* �� */
    color: #f06292;
  }

  .footer-contact-icon.email::before {
    content: "\2709"; /* ✉️ */
    color: #42a5f5;
  }

  .footer-contact-icon.phone::before {
    content: "\260E"; /* ☎️ */
    color: #66bb6a;
  }

  .footer-contact-link {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.2s;
  }

  .footer-contact-link:hover {
    color: #fff;
    text-decoration: underline;
  }

  /* Pricing Info Modal Styles */
  .pricing-info-modal .modal-content {
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    overflow: hidden;
  }
  .pricing-info-modal .modal-header {
    border-bottom: 1px solid #e9ecef;
    background: #f8faff;
  }
  .pricing-info-modal .modal-title {
    font-family: 'Anton', sans-serif;
    font-size: 1.5rem;
    color: #0F3CC9;
    font-weight: 600;
  }
  .pricing-info-tabs {
    min-width: 160px;
    border-right: 1px solid #e9ecef;
    background: #f8faff;
    padding: 20px 0 20px 0;
    border-radius: 12px 0 0 12px;
    height: 100%;
  }
  .pricing-info-tab {
    color: #0F3CC9;
    font-weight: 500;
    font-size: 1rem;
    border: none;
    background: none;
    text-align: left;
    padding: 12px 24px;
    border-radius: 0 20px 20px 0;
    margin-bottom: 6px;
    transition: background 0.2s, color 0.2s;
  }
  .pricing-info-tab.active, .pricing-info-tab:focus, .pricing-info-tab:hover {
    background: #0F3CC9;
    color: #fff;
  }
  .pricing-info-modal .tab-content {
    padding: 24px 16px;
    min-height: 220px;
  }
  .pricing-info-modal .tab-pane h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #131314;
    margin-bottom: 10px;
  }
  .pricing-info-modal .tab-pane p {
    font-size: 1rem;
    color: #444;
  }
  @media (max-width: 768px) {
    .pricing-info-modal .modal-body.d-flex {
      flex-direction: column;
    }
    .pricing-info-tabs {
      flex-direction: row !important;
      border-right: none;
      border-bottom: 1px solid #e9ecef;
      border-radius: 12px 12px 0 0;
      min-width: 100%;
      padding: 0 0 10px 0;
      margin-bottom: 10px;
    }
    .pricing-info-tab {
      border-radius: 20px 20px 0 0;
      margin-bottom: 0;
      margin-right: 6px;
      padding: 10px 12px;
      font-size: 0.95rem;
    }
    .pricing-info-modal .tab-content {
      padding: 16px 4px;
    }
  }

