    :root {
      --brand-color: #153683;
      --text-color: #333;
      --primary-color: #4CAF50;
      --font-size: 18px;
    }

    body {
      font-family: 'Poppins', sans-serif;
      scroll-behavior: smooth;
    }

    /* Navbar */
    .navbar {
      background: var(--brand-color);
    }
    .navbar-brand {
      font-weight: 700;
      letter-spacing: 1px;
      color: #fff !important;
    }
    .nav-link {
      color: #fff !important;
      transition: 0.3s;
    }
    .nav-link:hover {
      color: #ffc107 !important;
    }

    /* Hero Slider */
    .carousel-item img {
      height: 100vh;
      object-fit: cover;
      filter: brightness(60%);
    }
    .carousel-caption {
      top: 60%;
      transform: translateY(-50%);
      text-align: left;
      max-width: 700px;
    }
    .carousel-caption h1 {
      font-size: 3rem;
      font-weight: 700;

    }
    .carousel-caption p {
      font-size: 1.2rem;
      
    }

    /* Services */
    .services {
      background: #f9f9f9;
      padding: 80px 0;
    }
    .service-card {
      background: #fff;
      border: none;
      border-radius: 15px;
      box-shadow: 0 5px 20px rgba(0,0,0,0.1);
      transition: transform 0.3s;
      cursor: pointer;
    }
    .service-card:hover {
      transform: translateY(-10px);
    }
    .service-icon {
      font-size: 40px;
      color: #007bff;
    }

    /* About */
    .about {
      padding: 80px 0;
    }
    .about img {
      border-radius: 15px;
    }

    /* Contact */
    .contact {
      background: #0d1b2a;
      color: #fff;
      padding: 80px 0;
    }
    .contact .form-control {
      border-radius: 10px;
      border: none;
      padding: 12px;
    }
    .contact button {
      background: #ffc107;
      border: none;
      border-radius: 10px;
      padding: 10px 25px;
      color: #000;
      font-weight: 600;
    }

    footer {
      background: #000;
      color: #bbb;
      text-align: center;
      padding: 20px 0;
    }

    /* Floating Button */
    .quote-btn {
      position: fixed;
      bottom: 25px;
      right: 25px;
      background: #ffc107;
      color: #000;
      border: none;
      border-radius: 50px;
      padding: 15px 25px;
      font-weight: 600;
      box-shadow: 0 5px 20px rgba(0,0,0,0.3);
      z-index: 9999;
      transition: 0.3s;
    }
    .quote-btn:hover {
      background: #e0a800;
    }

    .modal.show .modal-dialog {
      max-width: 70%;
    }
    /* Parallax Panel */
    .parallax-section {
      position: relative;
      min-height: 60vh;
      background-image: url("images/why-bg.jpg");
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      background-attachment: fixed;
      display: flex;
      align-items: center;
    }

    /* Dark overlay for readability */
    .parallax-section::before {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.55);
    }

    /* Content above overlay */
    .parallax-content {
      position: relative;
      z-index: 2;
    }

    /* Responsive fix for mobile */
    @media (max-width: 768px) {
      .parallax-section {
        background-attachment: scroll;
      }
    }