    body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Arial', sans-serif; /* Replace with your preferred font */
    }

    /* Adjust logo and text spacing on small screens */
    .navbar-brand img {
    max-height: 45px;
    }
    
    .small a{
  color: #ffde59 !important;
  text-decoration: none;
  font-weight: bold;
}

    .small a:hover{
    color: #59bfff !important;
    }

    /* Ensure call button doesn't overflow on small screens */
    @media (max-width: 991.98px) {
    .navbar .btn-danger {
        margin-top: 10px;
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .navbar-nav {
        text-align: center;
    }
    }

    /* Optional: Improve spacing between nav links */
    .navbar-nav .nav-link {
    padding-right: 1rem;
    padding-left: 1rem;
    }

    .navbar-nav .nav-link:not(:last-child) {
    margin-right: 2.0rem; /* Adjust spacing as you want */
    }


    .hero-section {

    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    height: 100vh;
    color: white;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    }

    .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; /* Align to start (left) */
    padding-left: 23%; /* Add space on the left */
    padding-right: 5%;
    text-align: left;
    }

    .hero-title {
    font-size: 4rem;
    font-weight: 900; /* or 700+ for bold */
    line-height: 1.2;
    color: white;
    }

    .hero-subtitle {
    font-size: 24px; /* You can adjust this value */
    margin-top: 10px;
    margin-bottom: 30px;
    }

    .feature-box {
      background: #ffde59;
      color: #000;
      font-weight: 600;
      padding: 20px 25px;
      margin-right: 15px;
      border-radius: 12px;
      text-align: center;
      box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    }

    .feature-box i {
      font-size: 1.5rem;
      display: block;
      margin-bottom: 5px;
    }

    .call-button {
      position: absolute;
      bottom: 30px;
      left: 30px;
      background-color: #e63946;
      color: #fff;
      font-weight: 600;
      padding: 10px 20px;
      border-radius: 30px;
      text-decoration: none;
      transition: 0.3s;
    }

    .call-button:hover {
      background-color: #d62828;
      color: #fff;
    }

    @media (max-width: 768px) {
      .hero-title {
        font-size: 3rem;
      }

      .feature-box {
        margin-bottom: 15px;
      }

      .call-button {
        left: 50%;
        transform: translateX(-50%);
      }
    }

    /* General About Section Styling */
    #about {
    padding: 60px 0;
    }

    #about img {
    width: 100%;
    height: 430px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    }

    #about h2 {
    font-size: 2rem;
    color: #222;
    }

    #about p {
    font-size: 18px;
    color: #444;
    line-height: 1.8;
    }

    /* Mobile Optimization */
    @media (max-width: 768px) {
    #about {
        padding: 40px 20px;
    }

    #about h2 {
        font-size: 1.6rem;
    }

    #about p {
        font-size: 1rem;
        text-align: justify;
    }

    #about .text-md-start {
        text-align: center !important;
    }

    #about img {
        margin-bottom: 20px;
    }
    }

    /* Extra padding and better text readability on small screens */
    @media (max-width: 768px) {
    #services .card {
        margin-bottom: 20px;
    }

    #services .card-body {
        padding: 1rem;
    }

    #services .card-text {
        font-size: 0.95rem;
        text-align: justify;
    }

    #services .card-title {
        font-size: 1.2rem;
    }

    #services h2 {
        font-size: 1.5rem;
    }
    }

    /* Slightly larger padding and spacing for tablets */
    @media (min-width: 769px) and (max-width: 992px) {
    #services .card-text {
        font-size: 1rem;
    }

    #services .card-title {
        font-size: 1.3rem;
    }
    }

    #why-choose-us {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    }

    #why-choose-us h2 {
    font-size: 2rem;
    }

    #why-choose-us ul {
    padding-left: 0;
    }

    #why-choose-us li {
    font-size: 1rem;
    margin-bottom: 0.75rem;
    }

    /* Responsive tweaks */
    @media (max-width: 767.98px) {
    #why-choose-us h2 {
        font-size: 1.5rem;
    }

    #why-choose-us .row > div {
        padding-left: 1rem;
        padding-right: 1rem;
        margin-bottom: 1.5rem;
    }

    #why-choose-us li {
        font-size: 0.95rem;
    }
    }

    /* Base styles */
    .accordion-button {
        font-weight: 500;
        font-size: 1rem;
        padding: 1rem;
    }

    .accordion-body {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    /* Paragraph and heading spacing for mobile */
    @media (max-width: 576px) {

        .hero-title {
        font-size: 2.5rem;
      }
        .container {
        padding-left: 1rem;
        padding-right: 1rem;
        }

        .accordion-button {
        font-size: 0.95rem;
        padding: 0.75rem 1rem;
        }

        .accordion-body {
        font-size: 0.9rem;
        padding: 0.75rem 1rem;
        }

        h2 {
        font-size: 1.5rem;
        }

        p {
        font-size: 0.95rem;
        }
    }

    /* Tablet view tweaks */
    @media (min-width: 577px) and (max-width: 991px) {
        .accordion-button {
        font-size: 1rem;
        }

        .accordion-body {
        font-size: 0.95rem;
        }

        p {
        font-size: 1rem;
        }
    }

    /* Optional: Smooth accordion animation */
    .accordion-collapse {
        transition: all 0.3s ease;
    }

    /* Contact Icons Styling */
    .bi {
    font-size: 2.5rem;
    }

    /* Custom underline for heading */
    section.text-center h2 + .border-bottom {
    border-width: 3px;
    margin-bottom: 1rem;
    }

    /* Responsive adjustments */
    @media (max-width: 767.98px) {
    .text-center h2 {
        font-size: 1.5rem;
    }

    .bi {
        font-size: 2rem;
    }

    footer small {
        font-size: 0.85rem;
    }

    .row > div {
        padding-left: 20px;
        padding-right: 20px;
    }
    }
    @media (max-width: 576px) {
    .row.justify-content-center > div {
        text-align: center;
        margin-bottom: 2rem;
    }

    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    }


    @media (max-width: 456px) {
        .hero-title {
        font-size: 2rem;
      }
    }