Ansible group_vars not loading or am I making a fundamental mistake here?

Hello experts,
This is the following ansible directory structure I have:

├── environments
│ └── azure_sandbox
├── filter_plugins
├── group_vars
│ ├── all.yml
│ └── uswest_sandbox.yml
├── hierarchy.README
├── host_vars
├── library
├── roles
│ ├── cassandra
│ ├── common
│ │ ├── default
│ │ ├── files
│ │ ├── handlers
│ │ │ └── main.yml
│ │ ├── meta
│ │ ├── tasks
│ │ │ ├── Debian.yml
│ │ │ ├── docker_base_centos7.yml
│ │ │ ├── main.yml
│ │ │ ├── RedHat.yml
│ │ │ ├── rh6.yml
│ │ │ ├── rh7.yml
│ │ │ ├── rh_java.yml
│ │ │ └── rh_pytools.yml
│ │ ├── templates
│ │ │ ├── docker-defaults.j2
│ │ │ └── docker-init.j2
│ │ └── vars
│ │ └── main.yml
│ ├── docker
│ │ ├── handlers
│ │ │ └── main.yml
│ │ ├── meta
│ │ ├── tasks
│ │ │ ├── Debian.yml
│ │ │ ├── main.yml
│ │ │ ├── RedHat.yml
│ │ │ ├── rh6.yml
│ │ │ ├── rh7.yml
│ │ │ └── rh_pytools.yml
│ │ ├── templates
│ │ │ ├── docker-defaults.j2
│ │ │ └── docker-init.j2
│ │ └── vars
│ │ └── main.yml
│ ├── elasticsearch
│ ├── kafka
│ ├── netty
│ ├── nginx
│ │ ├── handlers
│ │ │ └── main.yml
│ │ ├── meta
│ │ ├── tasks
│ │ │ ├── Debian.yml
│ │ │ ├── main.yml
│ │ │ ├── RedHat.yml
│ │ │ ├── rh6.yml
│ │ │ └── rh7.yml
│ │ ├── templates
│ │ │ ├── docker-defaults.j2
│ │ │ └── docker-init.j2
│ │ └── vars
│ │ └── main.yml
│ ├── storm_deploy
│ ├── storm_supervisor
│ └── zookeeper
└── top_level_playbooks
├── top_level_base.yml
├── top_level_docker.yml
└── top_level_java.yml

Here’s the inventory file:

uswest: sandbox: UI

[sandbox_webtier_uswest]

group/host vars need to be relative to either the inventory or the
playbook, you seem to have them in a directory above both, ansible has
no reason to look there. You will have the same problem with your
'library' dir which I assume you want to use for custom modules, it
must be adjacent to your plays or inside the role that uses them or is
loaded in your play.

Thanks Brain, you were spot on. Sorry for the late reply. I realized my mistake once I had posted the question.

-Satish