    /* Hero Section */
    .hero {
      position: relative;
      height: 50vh !important;
      overflow: hidden;
    }
    .hero::after{
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        content: "";
        position: absolute;
        background: rgba(15, 23, 42, 0.566);
        
    }
    .hero img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: brightness(70%);
    }
    .hero-text {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      text-align: center;
      color: #fff;
      z-index: 99;
    }
    .hero-text h1 {
      font-size: 3rem;
      margin-bottom: 1rem;
      text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
    }
    .hero-text p {
      font-size: 1.2rem;
      max-width: 600px;
      margin: 0 auto;
    }

    /* Section Styling */
    .section {
      padding-top: 40px;
      padding-bottom: 40px;
      text-align: center;
    }
    .section h2 {
      font-size: 2.2rem;
      color: #1e293b;
      margin-bottom: 1.5rem;
    }
    .section p {
      color: #4b5563;
      line-height: 1.7;
      max-width: 800px;
      margin: 0 auto 2rem;
      font-size: 17px;
    }

    /* Benefits */
    .benefits {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 1.5rem;
      margin-top: 2rem;
    }
    .benefit-box {
      background: #f8fafc;
      padding: 1.5rem;
      border-radius: 12px;
      border: 1px solid #e2e8f0;
    }
    .benefit-box h4 {
      color: #0f172a;
      margin-bottom: 0.5rem;
    }

    /* Quote Form */
    .quote {
      background: linear-gradient(135deg, #1e3a8a, #2563eb);
      color: #fff;
    }
    .quote-form {
      display: grid;
      gap: 1rem;
      max-width: 600px;
      margin: 0 auto;
    }
    .quote-form input,
    .quote-form textarea {
      padding: 0.8rem;
      border: none;
      border-radius: 6px;
      outline: none;
      width: 100%;
    }
    .quote-form button {
      background: #fff;
      color: #1e3a8a;
      font-weight: 600;
      transition: all 0.3s ease;
    }
    .quote-form button:hover {
      background: #e0e7ff;
    }

    /* Footer */
    .site-footer {
      text-align: center;
      background: #0f172a;
      color: #cbd5e1;
      padding: 1.5rem 0;
    }
     /* Contact Section Style */
    .contact-section {
      background: linear-gradient(135deg, #0057b8, #1e293b);
      color: #fff;
      padding: 4rem 2rem;
      text-align: center;
    }

    .contact-section h2 {
      font-size: 2rem;
      margin-bottom: 1.5rem;
    }

    .contact-section p {
      font-size: 1rem;
      max-width: 700px;
      margin: 0 auto 2rem;
      line-height: 1.6;
    }

    .contact-links {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 1.5rem;
      margin-top: 1.5rem;
    }

    .contact-link {
      background: #ffffff15;
      border: 1px solid #ffffff33;
      padding: 1rem 2rem;
      border-radius: 12px;
      color: #fff;
      text-decoration: none;
      font-weight: 600;
      transition: all 0.3s ease;
    }

    .contact-link:hover {
      background: #fff;
      color: #0057b8;
      transform: translateY(-3px);
    }

    .contact-link i {
      margin-right: 8px;
    }


    @media (max-width: 768px) {
      .hero-text h1 {
        font-size: 17px;
      }
      .hero-text p {
        font-size: 14px;
      }
      .section p {
        font-size: 14px;
        }
    }
    
      @media (max-width: 600px) {
      .contact-link {
        width: 100%;
        text-align: center;
      }
    }