/* you can add your own custom css here if you don't want to worry about SASS/SCSS */



/* Custom color scheme: blue, yellow, gray, black for construction feel */
    :root {
      --primary: #1a365d; /* Deep blue */
      --accent: #ffc107;  /* Construction yellow */
      --dark: #222;
      --light: #f8f9fa;
      --black: #000000;
      --white: #FFFFFF;
      --yellow: #FFB400;
      --blue: #1A4D7A;
      --orange: #ff3600;
      --dark-gray: #222222;
      --medium-gray: #444444;
      --light-gray: #DDDDDD;
    }
    body {
      background-color: var(--light-gray);
      color: var(--dark-gray);
      font-family: 'Segoe UI', 'Roboto', Arial, sans-serif;
    }
    h1, h2, h3, h4, h5, h6 {
      color: var(--dark-gray);
      font-weight: 700;
    }
    a {
      color: var(--dark-gray);
      text-decoration: none;
      transition: color 0.2s;
    }
    a:hover, a:focus {
      color: var(--orange);
    }
    #alert {
        background-color: var(--medium-gray) !important;
    }
    .navbar {
      background-color: var(--dark) !important;
    }
    .navbar img {
      max-height:100px;
    }
    .navbar-brand, .nav-link, .navbar-text, .service-area {
      color: var(--light) !important;
    }
    ul.dropdown-menu.show {
      background: var(--dark-gray);
    }
    ul.dropdown-menu.show a {
      background: var(--dark-gray);
      color: var(--light);
    }
    main {
      padding-left: 0px !important;
      padding-right: 0px !important;
      margin-bottom: 40px;
    }
    .btn-accent {
      background-color: var(--accent);
      color: #222;
      font-weight: bold;
    }
    .btn-accent:hover {
      background-color: #e0a800;
      color: #222;
    }
    .service-area {
      font-size: 0.95rem;
      opacity: 0.85;
      letter-spacing: 0.02em;
    }
    .footer {
      background-color: var(--dark);
      color: var(--light);
    }
    .footer a {
      color: var(--accent);
      text-decoration: none;
    }
    .footer a:hover {
      text-decoration: underline;
    }
    .footer h5 {
      color: var(--light);
    }
    .footer .social-icons a {
      color: var(--accent);
      margin-right: 0.5rem;
      font-size: 1.3rem;
    }
    .footer .footer-cta > a {
      color:var(--dark)
    }
    .footer .service-areas {
      max-height: 120px;
      overflow-y: auto;
      font-size: 0.95rem;
    }
    .footer .license-info {
      font-size: 0.95rem;
      opacity: 0.8;
    }
    .footer .footer-cta {
      margin-top: 1rem;
    }
    .footer .copyright {
      border-top: 1px solid #444;
      margin-top: 1.5rem;
      padding-top: 0.75rem;
      font-size: 0.95rem;
      opacity: 0.8;
    }

/* Home Page */

    /* === Hero Section === */
    section.bg-light.text-center {
      background: linear-gradient(135deg, var(--yellow) 0%, var(--white) 100%);
      color: var(--black);
      padding-top: 4rem;
      padding-bottom: 4rem;
    }
    section.bg-light.text-center h1 {
      color: var(--black);
      text-shadow: 1px 2px 8px rgba(255,180,0,0.08);
    }
    section.bg-light.text-center .lead {
      color: var(--dark-gray);
    }
    .btn-primary {
      background-color: var(--dark-gray);
      border-color: var(--dark-gray);
      color: var(--white);
      font-weight: 600;
    }
    .btn-primary:hover, .btn-primary:focus {
      background-color: var(--orange);
      border-color: var(--orange);
      color: var(--white);
    }

    /* === Services Overview === */
    section:not(.bg-light) {
      background: var(--white);
    }
    .card {
      border: none;
      border-radius: 1rem;
      box-shadow: 0 4px 24px 0 rgba(26,77,122,0.08);
      transition: transform 0.2s, box-shadow 0.2s;
    }
    .card:hover {
      transform: translateY(-6px) scale(1.02);
      box-shadow: 0 8px 32px 0 rgba(233,79,29,0.12);
    }
    .card-title {
      color: var(--dark-gray);
    }
    .card-body ul li {
      margin-bottom: 0.5rem;
      font-size: 1.08rem;
    }
    .btn-outline-primary {
      border-color: var(--yellow);
      color: var(--yellow);
      font-weight: 600;
    }
    .btn-outline-primary:hover, .btn-outline-primary:focus {
      background: var(--yellow);
      color: var(--black);
      border-color: var(--yellow);
    }
    .btn-outline-success {
      border-color: var(--orange);
      color: var(--orange);
      font-weight: 600;
    }
    .btn-outline-success:hover, .btn-outline-success:focus {
      background: var(--orange);
      color: var(--white);
      border-color: var(--orange);
    }

    /* === Equipment Highlight  Section === */
    section.bg-light:not(.text-center) {
      background: linear-gradient(120deg, var(--light-gray) 60%, var(--yellow) 100%);
    }
    section.bg-light:not(.text-center) h2 {
      color: var(--orange);
    }
    section.bg-light:not(.text-center) ul li {
      color: var(--dark-gray);
      font-weight: 500;
    }

    /* === Project Portfolio Section === */
    section .img-fluid.rounded {
      border: 3px solid var(--yellow);
      box-shadow: 0 2px 12px 0 rgba(26,77,122,0.10);
      transition: border-color 0.2s, box-shadow 0.2s;
    }
    section .img-fluid.rounded:hover {
      border-color: var(--orange);
      box-shadow: 0 4px 24px 0 rgba(233,79,29,0.15);
    }
    #projects .btn-cta {
        background-color: #1A4D7A;
        color: #fff;
        font-weight: 700;
        border-radius: 30px;
        border: none;
        box-shadow: 0 2px 8px rgba(26,77,122,0.10);
        transition: background 0.2s, color 0.2s;
        }
    #projects .btn-cta:hover, .btn-cta:focus {
        background-color: #FFB400;
        color: #000;
        }

    /* === About / Local Expertise Section === */
    section.bg-light .fw-bold {
      color: var(--dark-gray);
    }
    section.bg-light ul li {
      color: var(--medium-gray);
      font-weight: 500;
    }
    section.bg-light .img-fluid {
      border: 2px solid var(--dark-gray);
      box-shadow: 0 2px 16px 0 rgba(26,77,122,0.10);
    }

    /* === Testimonials === */
    .card-text {
      color: var(--dark-gray);
      font-style: italic;
    }
    .card-subtitle {
      color: var(--medium-gray);
      font-size: 0.98rem;
    }
    section .card.h-100 {
      border-left: 6px solid var(--yellow);
      background: var(--white);
    }
    section .card.h-100:hover {
      border-left: 6px solid var(--orange);
    }

    /* === Call to Action / Contact === */
    section.bg-primary.text-white {
      background: linear-gradient(90deg, var(--dark-gray) 70%, var(--yellow) 100%);
      color: var(--white);
    }
    #contact > div > h2 {
      color: var(--white);
    }
    section.bg-primary.text-white .btn-light {
      background: var(--yellow);
      color: var(--black);
      border: none;
      font-weight: 600;
    }
    section.bg-primary.text-white .btn-light:hover, 
    section.bg-primary.text-white .btn-light:focus {
      background: var(--orange);
      color: var(--white);
    }
    section.bg-primary.text-white .btn-outline-light {
      border-color: var(--white);
      color: var(--white);
      font-weight: 600;
    }
    section.bg-primary.text-white .btn-outline-light:hover, 
    section.bg-primary.text-white .btn-outline-light:focus {
      background: var(--white);
      color: var(--dark-gray);
    }

    /* === Project Categories === */
    #projectCategories .category-card {
      background: var(--white);
      border: 1px solid var(--light-gray);
      border-radius: 0.5rem;
      box-shadow: 0 2px 8px rgba(26,54,93,0.04);
      transition: box-shadow 0.2s;
      text-align: center;
      padding: 1rem 0.5rem;
      margin-bottom: 1.5rem;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
    }

    #projectCategories .category-card:hover {
      box-shadow: 0 4px 16px rgba(26,54,93,0.12);
      border-color: var(--accent);
    }

    #projectCategories .category-img {
      width: 100%;
      max-width: 120px;
      height: 120px;
      object-fit: cover;
      margin: 0 auto 0.75rem auto;
      border-radius: 0.5rem;
      border: 2px solid var(--primary);
      background: var(--light-gray);
      transition: border-color 0.2s;
    }

    #projectCategories .category-card:hover .category-img {
      border-color: var(--accent);
    }

    #projectCategories .category-title {
      margin-top: 0.5rem;
      font-size: 1.1rem;
      font-weight: 600;
      color: var(--primary);
      text-decoration: none;
      transition: color 0.2s;
      display: block;
    }

    #projectCategories .category-card:hover .category-title {
      color: var(--accent);
      text-decoration: underline;
    }


    /* === Projects === */
    #project.py-5 {
        padding-bottom:0px !important;
    }
    #project > .card,
    #project > .card:hover {
      transition: none !important;
      transform: none !important;
    }
    #project .case-study-card {
      background: var(--white);
      border-radius: 1rem;
      box-shadow: 0 2px 8px var(--light-gray);
      border: none;
      margin-bottom: 2rem;
    }
    #project .case-header {
      background: var(--primary);
      color: var(--white);
      border-radius: 1rem 1rem 0 0;
      padding: 1.5rem;
    }
    #project h2 {
      color: var(--white);
    }
    #project .case-location {
      font-size: 1.1rem;
      color: var(--accent);
      font-weight: bold;
    }
    #project .section-title {
      color: var(--primary);
      font-weight: 600;
      margin-top: 1.5rem;
      margin-bottom: 24px;
    }
    #project div.g-3 {
      margin-bottom: 20px;
    }
    #project div.col-md-3 {
      text-align:center;
    }
    #project #projectVideos,
    #project #projectPhotos {
      margin-bottom:80px;
    }
    #project .photo-thumb {
      cursor: pointer;
      border-radius: 0.5rem;
      border: 2px solid var(--light-gray);
      transition: border-color 0.2s;
      max-height: 200px;
    }
    #project .photo-thumb {
      cursor: pointer;
      border-radius: 0.5rem;
      border: 2px solid var(--light-gray);
      transition: border-color 0.2s;
      max-height: 200px;
    }
    #project .photo-thumb:hover {
      border-color: var(--accent);
    }
    #project .modal-dialog {
        max-width: 90%; /* Limit the modal width to 90% of the viewport */
        margin: auto;
    }
    #project .modal-content {
        max-height: 90vh; /* Limit the modal height to 90% of the viewport height */
        overflow: hidden; /* Prevent content overflow */
    }
    .modal-video {
        width: 100%; /* Make the video take up the full width of the modal */
        height: auto; /* Maintain aspect ratio */
        max-height: 80vh; /* Ensure the video doesn't exceed the viewport height */
    }
    .modal-img {
      max-height: 80vh; /* Ensure the video doesn't exceed the viewport height */
      border-radius: 0.5rem;
    }
    #project .case-benefits {
      background: var(--yellow);
      color: var(--dark);
      border-radius: 0.5rem;
      padding: 1rem;
      margin-top: 1rem;
    }

    /* === Services Pages === */
    #servicePage section {
      margin-bottom: 80px;
      padding: 40px;
    }
    #servicePage .feature-item:hover {
      background-color: var(--light-gray);
      border-radius: 0.5rem;
      transition: background 0.2s;
    }
    #ctaButtons {
      margin-bottom: 40px;
    }

    #servicePage .section-bg {
      background-color: var(--light);
    }

    #servicePage .section-title {
      color: var(--primary);
    }

    #servicePage .section-subtitle {
      color: var(--accent);
    }

    .process-section {
      background: var(--white);
      border-radius: 1rem;
      box-shadow: 0 2px 16px rgba(26, 54, 93, 0.07);
      padding: 2.5rem 2rem;
      margin-bottom: 2.5rem;
    }

    .process-stepper {
      list-style: none;
      padding-left: 0;
      margin: 0;
      position: relative;
    }

    .process-stepper li {
      display: flex;
      align-items: flex-start;
      margin-bottom: 2rem;
      position: relative;
    }

    .process-stepper li:last-child {
      margin-bottom: 0;
    }

    .process-icon {
      flex-shrink: 0;
      width: 48px;
      height: 48px;
      background: var(--accent);
      color: var(--primary);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2rem;
      margin-right: 1.25rem;
      box-shadow: 0 2px 8px rgba(255, 193, 7, 0.15);
    }

    .process-stepper li:not(:last-child)::after {
      content: '';
      position: absolute;
      left: 24px;
      top: 52px;
      width: 2px;
      height: calc(100% - 52px);
      background: var(--light-gray);
      z-index: 0;
    }

    #servicePage .faq-section {
      background: var(--white);
      border-radius: 0.5rem;
      box-shadow: 0 2px 8px rgba(26, 54, 93, 0.07);
      padding: 2rem;
      margin-top: 2rem;
    }

    #servicePage .faq-title {
      color: var(--primary);
      font-weight: 700;
      margin-bottom: 1.5rem;
    }

    #servicePage .accordion-button {
      background-color: var(--light-gray);
      color: var(--primary);
      font-weight: 500;
    }

    #servicePage .accordion-button:not(.collapsed) {
      background-color: var(--accent);
      color: var(--dark);
    }

    #servicePage .accordion-body {
      color: var(--medium-gray);
      background-color: var(--white);
    }

    /* === Service Area Pages === */
    #serviceAreaPage section {
      padding: 40px;
      margin-bottom: 80px;
    }

    #serviceAreaPage .hero-section {
      background: linear-gradient(90deg, var(--primary) 60%, var(--blue) 100%);
      color: var(--white);
      padding: 3rem 1rem 2rem 1rem;
      text-align: center;
      margin-bottom: 2rem;
    }

    #serviceAreaPage .hero-section h1 {
      font-size: 2.5rem;
      font-weight: 700;
      margin-bottom: 0.5rem;
      color: var(--yellow);
    }

    #serviceAreaPage .hero-section p {
      font-size: 1.25rem;
      margin-bottom: 1.5rem;
    }

    #serviceAreaPage .cta-btn {
      background: var(--accent);
      color: var(--dark);
      font-weight: 600;
      border: none;
      border-radius: 2rem;
      padding: 0.75rem 2rem;
      font-size: 1.1rem;
      transition: background 0.2s;
    }

    #serviceAreaPage .cta-btn:hover {
      background: var(--yellow);
      color: var(--black);
    }

    #serviceAreaPage .section-title {
      color: var(--primary);
      font-size: 2rem;
      font-weight: 700;
      margin-bottom: 1rem;
      margin-top: 2rem;
    }

    #serviceAreaPage .benefits-list {
      list-style: none;
      padding: 0;
    }

    #serviceAreaPage .benefits-list li {
      margin-bottom: 0.75rem;
      font-size: 1.1rem;
      position: relative;
      padding-left: 2rem;
    }

    #serviceAreaPage .benefits-list li::before {
      content: "✔";
      color: var(--accent);
      font-weight: bold;
      position: absolute;
      left: 0;
      top: 0;
    }

    #serviceAreaPage .service-cards {
      display: flex;
      flex-wrap: wrap;
      gap: 1.5rem;
      margin-bottom: 2rem;
    }

    #serviceAreaPage .service-card {
      background: var(--light);
      border: 1px solid var(--light-gray);
      border-radius: 1rem;
      padding: 1.5rem;
      flex: 1 1 300px;
      min-width: 260px;
      box-shadow: 0 2px 8px rgba(26,54,93,0.05);
      transition: box-shadow 0.2s;
    }

    #serviceAreaPage .service-card:hover {
      box-shadow: 0 4px 16px rgba(26,54,93,0.12);
    }

    #serviceAreaPage .process-steps {
      display: flex;
      flex-wrap: wrap;
      gap: 1.5rem;
      margin-bottom: 2rem;
    }

    #serviceAreaPage .process-step {
      background: var(--white);
      border: 1px solid var(--light-gray);
      border-radius: 1rem;
      padding: 1.25rem;
      flex: 1 1 220px;
      min-width: 180px;
      text-align: center;
      box-shadow: 0 1px 4px rgba(26,54,93,0.04);
    }

    #serviceAreaPage .process-step-number {
      background: var(--accent);
      color: var(--dark);
      font-weight: 700;
      border-radius: 50%;
      width: 2.2rem;
      height: 2.2rem;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      margin-bottom: 0.5rem;
    }

    #serviceAreaPage .local-highlight {
      background: var(--light-gray);
      border-radius: 1rem;
      padding: 1.25rem 1.5rem;
      margin-bottom: 2rem;
      color: var(--dark);
    }

    @media (max-width: 991px) {
      #serviceAreaPage .service-cards, 
      #serviceAreaPage .process-steps {
        flex-direction: column;
        gap: 1rem;
      }
      #serviceAreaPage .hero-section {
        padding: 2rem 0.5rem 1.5rem 0.5rem;
      }
      #serviceAreaPage .section-title {
        font-size: 1.5rem;
      }
    }



    /* === Contact Form Page === */
    form#userForm {
        padding-top: 80px;
    }
    .form-section {
      background: var(--white);
      border-radius: 1rem;
      box-shadow: 0 8px 32px rgba(26,77,122,0.10), 0 1.5px 6px rgba(34,34,34,0.07);
      padding: 2.5rem 2rem;
      margin-top: -3rem;
      margin-bottom: 2rem;
      max-width: 700px;
      width: 100%;
    }
    .form-section h2 {
      color: var(--primary);
      font-weight: 600;
      margin-bottom: 1.5rem;
    }
    .form-label, .formControlLabel {
      color: var(--primary);
      font-weight: 500;
    }
    .formRequired {
      color: var(--orange);
    }
    .rsform-submit-button {
      background: var(--accent);
      color: var(--black);
      border: none;
      font-weight: 600;
      letter-spacing: 1px;
      transition: background 0.2s;
    }
    .btn-primary:hover, .rsform-submit-button:hover {
      background: var(--orange);
      color: var(--white);
    }
    .formControls input, .formControls textarea, .formControls select {
      border-radius: 0.5rem;
      border: 1px solid var(--medium-gray);
      background: var(--light-gray);
      color: var(--dark-gray);
    }
    .formControls input:focus, .formControls textarea:focus, .formControls select:focus {
      border-color: var(--primary);
      box-shadow: 0 0 0 0.2rem rgba(26,77,122,0.10);
    }
    .formValidation {
      color: var(--orange);
      font-size: 0.95em;
    }
    /* Responsive tweaks */
     @media (max-width: 767px) {
        .form-section {
          padding: 1.5rem 0.5rem;
          margin-top: -2rem;
        }
      }
    
    /* === Contact Thank You Submitted Page === */
    .thank-you-section {
    background: linear-gradient(135deg, #FFFFFF 0%, #DDDDDD 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    }
    .thank-you-section::before {
        content: '';
        position: absolute;
        top: 0; left: 0; right: 0;
        height: 4px;
        background: linear-gradient(90deg, #FFB400 0%, #E94F1D 50%, #1A4D7A 100%);
    }
    .thank-you-card {
        background: #FFFFFF;
        border-radius: 15px;
        padding: 3rem 2rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        border: 1px solid #DDDDDD;
        position: relative;
        overflow: hidden;
    }
    .thank-you-card::before {
        content: '';
        position: absolute;
        top: 0; left: 0; right: 0;
        height: 2px;
        background: linear-gradient(90deg, #FFB400, #E94F1D, #1A4D7A);
    }
    .success-icon {
        font-size: 4rem;
        color: #FFB400;
        text-shadow: 0 2px 4px rgba(255, 180, 0, 0.3);
    }
    .thank-you-title {
        color: #1A4D7A;
        font-weight: 700;
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
        line-height: 1.2;
        text-shadow: 0 1px 2px rgba(26, 77, 122, 0.1);
    }
    .message-content .lead {
        color: #222222;
        font-size: 1.2rem;
        font-weight: 400;
        line-height: 1.6;
    }
    .closing-message {
        color: #222222;
        font-size: 1.1rem;
        font-weight: 500;
    }
    .urgent-contact {
        background: #FFB400;
        border-radius: 10px;
        padding: 1.5rem;
        margin: 2rem 0;
        border-left: 4px solid #E94F1D;
    }
    .urgent-contact p {
        color: #000000;
        font-weight: 600;
        margin-bottom: 0.5rem;
    }
    .phone-number {
        color: #1A4D7A;
        font-size: 1.8rem;
        font-weight: 700;
        text-decoration: none;
        display: inline-block;
        transition: all 0.3s ease;
        padding: 0.5rem 1rem;
        border-radius: 5px;
        background: rgba(255, 255, 255, 0.8);
    }
    .phone-number:hover {
        color: #FFFFFF;
        background: #1A4D7A;
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(26, 77, 122, 0.3);
    }
    .service-highlight {
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        padding: 1rem;
        border-radius: 10px;
    }
    .service-highlight:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }
    .service-image {
        border: 3px solid #DDDDDD;
        transition: border-color 0.3s ease;
    }
    .service-highlight:hover .service-image {
        border-color: #FFB400;
    }
    .service-highlight h5 {
        color: #1A4D7A;
        font-weight: 600;
        font-size: 1.2rem;
    }
    .service-highlight .text-muted {
        color: #888888 !important;
        font-size: 0.95rem;
    }
    .info-box {
        background: linear-gradient(135deg, #1A4D7A 0%, #222222 100%);
        color: #FFFFFF;
        padding: 1.5rem;
        border-radius: 10px;
        height: 100%;
        border-left: 4px solid #FFB400;
        transition: transform 0.3s ease;
    }
    .info-box:hover {
        transform: translateY(-3px);
    }
    .info-title {
        color: #FFB400;
        font-weight: 600;
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    .info-text {
        color: #FFFFFF;
        font-size: 0.95rem;
        line-height: 1.5;
        margin: 0;
    }
    .cta-section {
        background: rgba(26, 77, 122, 0.05);
        padding: 2rem;
        border-radius: 10px;
        border: 2px dashed #1A4D7A;
    }
    .cta-title {
        color: #1A4D7A;
        font-weight: 600;
        font-size: 1.2rem;
        margin-bottom: 1rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    .btn-outline-primary {
        border-color: #1A4D7A;
        color: #1A4D7A;
        font-weight: 600;
        padding: 0.75rem 1.5rem;
        border-width: 2px;
        transition: all 0.3s ease;
    }
    .btn-outline-primary:hover {
        background-color: #1A4D7A;
        border-color: #1A4D7A;
        color: #FFFFFF;
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(26, 77, 122, 0.3);
    }
    .btn-outline-secondary {
        border-color: #E94F1D;
        color: #E94F1D;
        font-weight: 600;
        padding: 0.75rem 1.5rem;
        border-width: 2px;
        transition: all 0.3s ease;
    }
    .btn-outline-secondary:hover {
        background-color: #E94F1D;
        border-color: #E94F1D;
        color: #FFFFFF;
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(233, 79, 29, 0.3);
    }
    @media (max-width: 768px) {
        .thank-you-title { font-size: 2rem; }
        .thank-you-card { padding: 2rem 1.5rem; }
        .phone-number { font-size: 1.5rem; }
        .success-icon { font-size: 3rem; }
        .cta-buttons .btn { display: block; width: 100%; margin-bottom: 0.5rem; }
        .info-box { margin-bottom: 1rem; }
    }
    @media (max-width: 576px) {
        .thank-you-title { font-size: 1.75rem; }
        .urgent-contact { padding: 1rem; }
        .phone-number { font-size: 1.3rem; }
        .service-highlight { margin-bottom: 2rem; }
    }
    .thank-you-card { animation: slideInUp 0.6s ease-out; }
    @keyframes slideInUp {
        from { opacity: 0; transform: translateY(30px);}
        to { opacity: 1; transform: translateY(0);}
    }
    .phone-number:focus, .btn:focus {
        outline: 3px solid #FFB400;
        outline-offset: 2px;
    }
    @media print {
        .thank-you-section { background: #FFFFFF !important; }
        .thank-you-card { box-shadow: none !important; border: 1px solid #000000 !important; }
        .btn { display: none !important; }
    }

    /* Privacy Policy Page */
    .privacy-policy-section {
    background: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(34,34,34,0.08);
    color: #222222;
    font-family: 'Segoe UI', Arial, sans-serif;
    }

    .policy-title {
    color: #1A4D7A;
    font-weight: 700;
    border-left: 8px solid #FFB400;
    padding-left: 16px;
    letter-spacing: 1px;
    }

    .policy-intro {
    font-size: 1.1rem;
    color: #888888;
    margin-bottom: 2rem;
    }

    .policy-section {
    margin-bottom: 2rem;
    }

    .policy-heading {
    color: #E94F1D;
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border-bottom: 2px solid #FFB400;
    padding-bottom: 0.5rem;
    }

    .policy-list {
    list-style: none;
    padding-left: 0;
    }

    .policy-list li {
    position: relative;
    padding-left: 1.5em;
    margin-bottom: 0.75em;
    color: #222222;
    }

    .policy-list li::before {
    content: "🛠️";
    position: absolute;
    left: 0;
    color: #FFB400;
    font-size: 1em;
    }

    @media (max-width: 767.98px) {
    .policy-section {
        margin-bottom: 1.5rem;
    }
    .policy-title {
        font-size: 1.5rem;
    }
    }


/* === Miscellaneous === */
  ::-webkit-scrollbar {
    width: 8px;
    background: var(--light-gray);
  }
  ::-webkit-scrollbar-thumb {
    background: var(--yellow);
    border-radius: 4px;
  }


/* === Media Queries === */
    @media (min-width: 992px) {
      .nav-link {
          padding-right: 32px !important;
      }
    }