/* Top menu background */
#primaryNav {
    background:#1877F2 !important;
    padding:8px 10px;
    border-radius:6px;
}

/* Main menu items */
#primaryNav .nav-link {
    color:white !important;
    font-weight:600;
    padding:10px 16px;
}

/* Hover for main menu */
#primaryNav .nav-link:hover {
    background:#0f5cc0 !important;
    color:white !important;
    border-radius:4px;
}

/* Dropdown menu background */
#primaryNav .dropdown-menu {
    background:white !important;
    border-radius:6px;
    border:none;
    box-shadow:0 4px 10px rgba(0,0,0,0.15);
}

/* Dropdown text */
#primaryNav .dropdown-menu .dropdown-item {
    color:#333 !important;
    font-weight:500;
}

/* Dropdown hover */
#primaryNav .dropdown-menu .dropdown-item:hover {
    background:#f2f2f2 !important;
    color:#1877F2 !important; /* submenu hover text color */
}
@media (min-width: 992px) {
    .navbar-logo img, 
    .header-logo img,
    .navbar-brand img {
        max-height: 100% !important;
        width: auto !important;
        object-fit: contain;
    }
}
@media (min-width: 992px) {
    /* Target the exact container you identified */
    .main-header .container {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

    /* Remove the padding from the logo itself */
    .navbar-logo {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }

    /* Make the logo image fill the space */
    .navbar-logo img {
        max-height: 220px !important; /* Increase this if you want the logo bigger */
        width: auto !important;
    }
}
.custom-banner {
  width: 100%;
  text-align: center;
  margin: 10px 0 15px 0;
}

.custom-banner img {
  width: 728px;
  max-width: 95%;
  height: auto;
  border-radius: 6px;
}

/* Tablet */
@media (max-width: 768px) {
  .custom-banner img {
    width: 100%;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .custom-banner {
    margin: 8px 0;
  }

  .custom-banner img {
    width: 100%;
  }
}
#wa-fixed-widget {
        position: fixed;
        bottom: 30px;
        right: 30px;
        z-index: 10000;
    }

    .wa-link {
        display: flex;
        align-items: center;
        text-decoration: none !important;
    }

    /* The actual Icon */
    .wa-real-icon {
        width: 60px;
        height: 60px;
        display: block;
        filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
        transition: transform 0.3s ease;
    }

    /* The Text Box */
    .wa-label-box {
        background: #ffffff;
        color: #333;
        padding: 10px 18px;
        border-radius: 10px;
        margin-right: 15px;
        font-family: Arial, sans-serif;
        font-weight: bold;
        font-size: 14px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        border: 1px solid #ddd;
    }

    /* Animation */
    .wa-link:hover .wa-real-icon {
        transform: scale(1.15);
    }

    /* Mobile: Icon only */
    @media (max-width: 480px) {
        .wa-label-box {
            display: none;
        }
        .wa-real-icon {
            width: 55px;
            height: 55px;
        }
        #wa-fixed-widget {
            bottom: 20px;
            right: 20px;
        }
    }