/* Reset default margins and paddings, set base font */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Open Sans', sans-serif;
  }

  body, html {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    border: 0;
    background-color: #fff;
    color: #000;
    overflow-x: hidden; /* Prevent horizontal scroll */
  }

  .container, .mt-3 {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  .rn-header {
    background-color: #000;
    color: #fff;
    width: 100%;
  }

  .brand-logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }

  .brand-logo img {
    max-height: 100px;
  }

  .tagline {
    color: #fff;
    font-weight: bold;
    font-size: 20px;
    margin-left: 20px;
  }

  .rn-navbar-toggler {
    background: none;
    border: none;
    cursor: pointer;
    color: #fff;
    font-weight: bold;
  }

  .rn-navbar-toggler:hover {
    color: green;
  }

  .menu-links {
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }

  .menu-links a {
    margin: 0 15px;
    color: #fff;
  }

  .menu-links a.btn-call {
    background-color: #fff;
    color: #000;
    padding: 8px 15px;
    border-radius: 5px;
    text-decoration: none;
  }

  .menu-links a.btn-call:hover {
    background-color: green;
    color: #fff;
  }

  .owl-carousel {
    width: 100%;
    padding: 0;
    margin: 0;
  }

  .owl-carousel .item,
  .owl-carousel .item img {
    width: 100%;
    padding: 0;
    margin: 0;
    display: block;
    object-fit: cover;
    height: auto;
    border-radius: 0;
  }

  .footer {
    background: #0A192F;
    color: #fff;
    padding: 50px 20px;
    width: 100%;
  }

  .footer .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    padding-top: 20px;
  }

  .footer-col {
    text-align: left;
  }

  .footer-col:nth-child(1) {
    flex: 25%;
  }

  .footer-col:nth-child(2),
  .footer-col:nth-child(3),
  .footer-contact {
    flex: 20%;
  }

  .footer-col h4,
  .footer-contact h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
  }

  .footer-col .links,
  .footer-contact .links {
    list-style: none;
    padding: 0;
  }

  .footer-col .links li,
  .footer-contact .links li {
    margin-bottom: 10px;
    word-wrap: break-word;
    text-align: justify;
  }

  .footer-col .links li a,
  .footer-contact .links li a {
    text-decoration: none;
    color: #bfbfbf;
    transition: 0.3s;
  }

  .footer-col .links li a:hover {
    color: #1E90FF;
  }

  .footer-contact .links li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #bfbfbf;
  }

  .footer-contact .links li i {
    color: #1E90FF;
  }

  .newsletter {
    text-align: center;
    padding: 20px 0 30px;
  }

  .newsletter h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    background: #1E90FF;
    padding: 10px;
    color: #fff;
    border-radius: 6px;
    display: inline-block;
  }

  .newsletter p {
    color: #bfbfbf;
    max-width: 400px;
    margin: auto;
  }

  .newsletter form {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-top: 15px;
  }

  .newsletter input {
    height: 40px;
    border-radius: 6px;
    background: none;
    border: 1px solid #1E90FF;
    caret-color: #fff;
    color: #fff;
    padding-left: 10px;
  }

  .newsletter input::placeholder {
    color: #ccc;
  }

  .newsletter button {
    background: #1E90FF;
    color: #fff;
    border: none;
    padding: 10px 15px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    transition: 0.3s ease;
  }

  .newsletter button:hover {
    background: #007BFF;
  }

  .social-icons {
    text-align: left;
    margin-top: 20px;
  }

  .social-icons a {
    font-size: 24px;
    margin: 0 10px;
    color: #1E90FF;
    transition: 0.3s;
    text-decoration: none;
  }

  .social-icons a:hover {
    color: #007BFF;
  }

  @media (max-width: 768px) {
    .footer .footer-row {
      flex-direction: column;
      text-align: center;
    }

    .newsletter form {
      flex-direction: column;
    }

    .social-icons {
      text-align: center;
    }
  }

  .footer-bottom {
    margin-top: 30px;
    font-size: 0.9rem;
    color: #bfbfbf;
    text-align: center;
    font-weight: bold;
  }

  .links {
    list-style: none;
    padding: 0;
  }

  /* WhatsApp Floating Button */
  .whatsapp-chat {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: #fff;
    padding: 15px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 9999;
  }

  .chat-popup {
    display: none;
    position: fixed;
    bottom: 80px;
    right: 20px;
    background: #fff;
    padding: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    width: 250px;
  }

  .chat-popup a {
    display: block;
    padding: 8px;
    text-decoration: none;
    color: #000;
    border-bottom: 1px solid #ddd;
  }

  .chat-popup a:last-child {
    border-bottom: none;
  }


    .whatsapp-chat {
        position: fixed;
        bottom: 20px;
        right: 20px;
        background-color: #25D366;
        color: white;
        padding: 15px;
        border-radius: 50%;
        font-size: 20px;
        cursor: pointer;
        box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
         z-index: 9999; /* Ensure it's above other elements */
    }
    .chat-popup {
        display: none;
        position: fixed;
        bottom: 80px;
        right: 20px;
        background: white;
        padding: 10px;
        box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
        border-radius: 10px;
        width: 250px;
    }
    .chat-popup a {
        display: block;
        padding: 8px;
        text-decoration: none;
        color: black;
        border-bottom: 1px solid #ddd;
    }
    .chat-popup a:last-child {
        border-bottom: none;
    }
    @import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700&display=swap');
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Open Sans', sans-serif;
        }
        .footer {
            background: #0A192F;
            color: #fff;
            padding: 50px 20px;
            width: 100%;
        }
        .footer .footer-row {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            padding-top: 20px;
            gap: 30px;
        }
        .footer-col {
            text-align: left;
        }
        .footer-col:nth-child(1) {
            flex: 25%;
        }
        .footer-col:nth-child(2),
        .footer-col:nth-child(3),
        .footer-contact {
            flex: 20%;
        }
        .footer-col h4, .footer-contact h4 {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 15px;
        }
        .footer-col .links, .footer-contact .links {
            padding-left: 0;
        }
        .footer-col .links li, .footer-contact .links li {
            list-style: none;
            margin-bottom: 10px;
            word-wrap: break-word;
            text-align: justify;
        }
        .footer-col .links li a {
            text-decoration: none;
            color: #bfbfbf;
            transition: 0.3s;
        }
        .footer-col .links li a:hover {
            color: #1E90FF;
        }
        .footer-contact .links li {
            display: flex;
            align-items: center;
            gap: 10px;
            color: #bfbfbf;
        }
        .footer-contact .links li i {
            color: #1E90FF;
        }
        .newsletter {
            text-align: center;
            padding-bottom: 30px;
            padding-top: 20px;
        }
        .newsletter h4 {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 10px;
            background: #1E90FF;
            padding: 10px;
            color: #fff;
            border-radius: 6px;
            display: inline-block;
        }
        .newsletter p {
            color: #bfbfbf;
            max-width: 400px;
            margin: auto;
        }
        .newsletter form {
            display: flex;
            justify-content: center;
            gap: 5px;
            margin-top: 15px;
        }
        .newsletter input {
            height: 40px;
            border-radius: 6px;
            background: none;
            border: 1px solid #1E90FF;
            caret-color: #fff;
            color: #fff;
            padding-left: 10px;
        }
        .newsletter input::placeholder {
            color: #ccc;
        }
        .newsletter button {
            background: #1E90FF;
            color: #fff;
            border: none;
            padding: 10px 15px;
            border-radius: 6px;
            cursor: pointer;
            font-weight: 500;
            transition: 0.3s ease;
        }
        .newsletter button:hover {
            background: #007BFF;
        }
        .social-icons {
            text-align: left;
            margin-top: 20px;
        }
        .social-icons a {
            font-size: 24px;
            margin: 0 10px;
            color: #1E90FF;
            transition: 0.3s;
            text-decoration: none;
        }
        .social-icons a:hover {
            color: #007BFF;
        }
        @media (max-width: 768px) {
            .footer .footer-row {
                flex-direction: column;
                text-align: center;
            }
            .newsletter form {
                flex-direction: column;
            }
            .social-icons {
                text-align: center;
            }
        }
        .footer-bottom {
            margin-top: 30px;
            font-size: 0.9rem;
            color: #bfbfbf;
            text-align: center;
            font-weight: bold;
        }
        .links {
            list-style: none;
            padding: 0;
        }
